kubernetes-deployments/nixng-configurations/jellyseerr.nix

20 lines
359 B
Nix
Raw Normal View History

{
config,
nglib,
...
}: {
2024-12-19 20:32:21 +00:00
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"];
};
2024-12-19 20:32:21 +00:00
}