configs/laptop/incus.nix
Geir Okkenhaug Jerstad 0db64447e4 podman & incus on laptop
2024-08-02 18:52:48 +02:00

14 lines
218 B
Nix

{ config, pkgs, ... }:
{
virtualisation.incus = {
enable = true;
ui.enable = true;
};
environment.systemPackages = with pkgs; [
incus
lxc
];
networking.firewall.allowedTCPPorts = [ 8443 ];
}