NixToSee/modules/firewall.nix
2025-05-08 20:36:52 +02:00

9 lines
174 B
Nix

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