nix/modules/system/utils/firewall.nix

10 lines
130 B
Nix
Raw Normal View History

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