forked from pub-solar/os
0837303bb5
* Import attrs of profiles automatically with `defaultImport`. * Refactor profiles to ensure all are functions returning a module. * Add a suites.nix with collections of profiles. * Add suites as `specialArgs` to modules. * Add suite import to NixOS host.
11 lines
174 B
Nix
11 lines
174 B
Nix
{ ... }: {
|
|
services.plex = {
|
|
enable = true;
|
|
dataDir = "/srv/plex";
|
|
group = "media";
|
|
openFirewall = true;
|
|
};
|
|
|
|
users.groups.media.members = [ "plex" ];
|
|
}
|