mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 14:41:20 +00:00
10 lines
202 B
Nix
10 lines
202 B
Nix
{ ... }:
|
|
|
|
{
|
|
# Open ports in the firewall.
|
|
networking.firewall.enable = true;
|
|
networking.firewall.allowedTCPPorts = [ ];
|
|
networking.firewall.allowedUDPPorts = [
|
|
5353 # Spotify Connect
|
|
];
|
|
}
|