nixos/modules/plex/default.nix

18 lines
378 B
Nix
Raw Normal View History

2022-01-24 22:10:46 +01:00
{ ... }:
{
networking = {
2022-01-25 06:40:25 +01:00
firewall.allowedTCPPorts = [
32400 # Web Interface/ Remote Access
];
firewall.allowedUDPPorts = [
1900 # DLNA
5353 # Bonjour/Avahi
32410 # GDM network discovery
32412 # GDM network discovery
32413 # GDM network discovery
32414 # GDM network discovery
32469 # Plex DLNA Server
];
2022-01-24 22:10:46 +01:00
};
}