configs/laptop/incus.nix

19 lines
306 B
Nix
Raw Permalink Normal View History

2024-06-18 12:12:36 +02:00
{ config, pkgs, ... }:
{
2024-08-02 18:52:48 +02:00
virtualisation.incus = {
enable = true;
ui.enable = true;
};
2024-06-18 12:12:36 +02:00
environment.systemPackages = with pkgs; [
incus
lxc
];
2024-08-02 19:50:10 +02:00
users.users.geir = {
extraGroups = [
"incus-admin"
];
};
2024-08-02 18:52:48 +02:00
networking.firewall.allowedTCPPorts = [ 8443 ];
2024-06-18 12:12:36 +02:00
}