NixToSee/modules/firewall.nix
2025-04-12 14:53:53 +02:00

9 lines
166 B
Nix

{
networking.firewall = {
enable = false;
# Open ports in the firewall.
allowedTCPPorts = [8080 10001 10002];
allowedUDPPorts = [8080 10001 10002];
};
}