Package Deluge with NixNG

Use same group for all media images
This commit is contained in:
Pim Kunis 2025-01-05 23:08:24 +01:00
parent a22c34716e
commit abb7a131bc
15 changed files with 212 additions and 22 deletions

View file

@ -1,4 +1,8 @@
{...}: {
{
config,
nglib,
...
}: {
dinit.enable = true;
init.services.jellyseerr.shutdownOnExit = true;
@ -6,4 +10,10 @@
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"];
};
}