1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-19 22:22:00 +03:00
digga/profiles/misc/plex.nix
2019-12-19 13:03:15 -07:00

12 lines
174 B
Nix

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