add incus

This commit is contained in:
RootHost-Stormwind
2025-01-13 01:52:37 +01:00
parent 7dd3c8170d
commit c60446f024
3 changed files with 17 additions and 0 deletions

15
incus.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
virtualisation.incus.enable = true;
networking = {
nftables.enable = true;
firewall.interfaces = {
incusbr0 = {
allowedTCPPorts = [ 53 67 ];
allowedUDPPorts = [ 53 67 ];
};
};
};
}