mirror of
https://github.com/divnix/digga.git
synced 2024-12-19 22:22:00 +03:00
12 lines
174 B
Nix
12 lines
174 B
Nix
{ ... }:
|
|
{
|
|
services.plex = {
|
|
enable = true;
|
|
dataDir = "/srv/plex";
|
|
group = "media";
|
|
openFirewall = true;
|
|
};
|
|
|
|
users.groups.media.members = [ "plex" ];
|
|
}
|