podman & incus on laptop

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-02 18:52:48 +02:00
parent eae6726ecb
commit 0db64447e4
3 changed files with 20 additions and 2 deletions

View file

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