mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
11 lines
182 B
Nix
11 lines
182 B
Nix
_: {
|
|
networking.firewall = {
|
|
allowedUDPPorts = [5353]; # MDNS
|
|
allowedUDPPortRanges = [
|
|
{
|
|
from = 32768;
|
|
to = 60999;
|
|
}
|
|
]; # Chromecast
|
|
};
|
|
}
|