nix/modules/system/utils/firewall.nix
2024-03-26 19:50:08 +01:00

10 lines
130 B
Nix

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