os/profiles/graphical/plex.nix

11 lines
174 B
Nix
Raw Normal View History

2020-01-04 05:06:31 +00:00
{ ... }: {
2019-12-18 07:34:30 +00:00
services.plex = {
enable = true;
dataDir = "/srv/plex";
2019-12-19 20:03:15 +00:00
group = "media";
2019-12-18 07:34:30 +00:00
openFirewall = true;
};
2019-12-19 20:03:15 +00:00
users.groups.media.members = [ "plex" ];
2019-12-18 07:34:30 +00:00
}