1
1
mirror of https://github.com/divnix/digga.git synced 2024-11-23 20:22:04 +03:00
digga/profiles/graphical/plex.nix
2020-08-04 13:44:11 -06:00

11 lines
174 B
Nix

{ ... }: {
services.plex = {
enable = true;
dataDir = "/srv/plex";
group = "media";
openFirewall = true;
};
users.groups.media.members = [ "plex" ];
}