nix/modules/system/hardware/firewall.nix
2024-10-06 16:36:21 +02:00

10 lines
147 B
Nix

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