nix/modules/system/hardware/firewall.nix

10 lines
130 B
Nix

{ ... }:
{
networking.firewall = {
enable = true;
allowedTCPPorts = [ 53317 ];
allowedUDPPorts = [ 53317 ];
};
}