Files
stormwind-nixfiles/incus.nix
RootHost-Stormwind c60446f024 add incus
2025-01-13 01:52:37 +01:00

16 lines
254 B
Nix

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