nix/modules/networking/firewall.nix
2026-08-28 00:46:08 +02:00

7 lines
No EOL
153 B
Nix

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