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