dotfiles/nixos/modules/firewall.nix
Bart van der Braak 8dd28119e7 full restructure
2025-01-17 01:25:44 +01:00

10 lines
No EOL
202 B
Nix

{ ... }:
{
# Open ports in the firewall.
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ ];
networking.firewall.allowedUDPPorts = [
5353 # Spotify Connect
];
}