nix/modules/system/utils/firewall.nix

10 lines
142 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ ... }:
{
networking.firewall = {
enable = true;
2024-03-26 19:39:08 +01:00
allowedTCPPorts = [ 53317 24800 ];
allowedUDPPorts = [ 53317 24800 ];
2024-03-12 21:24:29 +01:00
};
}