kubernetes-deployments/nixng-configurations/jellyseerr.nix
Pim Kunis abb7a131bc Package Deluge with NixNG
Use same group for all media images
2025-01-05 23:08:24 +01:00

19 lines
359 B
Nix

{
config,
nglib,
...
}: {
dinit.enable = true;
init.services.jellyseerr.shutdownOnExit = true;
services.jellyseerr = {
enable = true;
configDir = "/app/config";
};
# TODO: should actually make this the main GID I think
users.groups.media = nglib.mkDefaultRec {
gid = config.ids.gids.media;
members = ["jellyseerr"];
};
}