nix/modules/system/utils/firewall.nix

10 lines
142 B
Nix

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