configs/workstation/incus.nix

19 lines
306 B
Nix
Raw Normal View History

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