1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

Merge pull request #21395 from jerith666/plex-firewall

plex: add config option to open recommended network ports
This commit is contained in:
Jörg Thalheim 2016-12-24 23:31:04 +01:00 committed by GitHub
commit f4e58c2eb2

View file

@ -19,6 +19,14 @@ in
description = "The directory where Plex stores its data files.";
};
openFirewall = mkOption {
type = types.bool;
default = false;
description = ''
Open ports in the firewall for the media server
'';
};
user = mkOption {
type = types.str;
default = "plex";
@ -141,6 +149,11 @@ in
};
};
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ 32400 3005 8324 32469 ];
allowedUDPPorts = [ 1900 5353 32410 32412 32413 32414 ];
};
users.extraUsers = mkIf (cfg.user == "plex") {
plex = {
group = cfg.group;