Added stash

This commit is contained in:
rasmus-kirk
2025-10-29 10:01:09 +01:00
parent a628221c93
commit 5b0c66d956
3 changed files with 157 additions and 5 deletions
+7
View File
@@ -1,3 +1,4 @@
# See https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/ids.nix
# TODO: Dir creation and file permissions in nix
{
pkgs,
@@ -37,6 +38,7 @@ in {
transmission = 70;
cross-seed = 183;
whisparr = 272;
stash = 69;
};
gids = {
autobrr = 188;
@@ -45,6 +47,7 @@ in {
media = 169;
prowlarr = 287;
recyclarr = 269;
stash = 69;
};
audiobookshelf = {
@@ -119,5 +122,9 @@ in {
user = "whisparr";
group = globals.libraryOwner.group;
};
stash = {
user = "stash";
group = globals.libraryOwner.group;
};
};
}