adds stash

This commit is contained in:
Dennis Schoepf 2025-07-23 22:17:06 +02:00
parent 341a573089
commit 179e62c2aa
2 changed files with 16 additions and 0 deletions

View file

@ -13,6 +13,7 @@
../../modules/openssh ../../modules/openssh
../../modules/jellyfin ../../modules/jellyfin
../../modules/syncthing ../../modules/syncthing
../../modules/stash
]; ];
# General # General

15
modules/stash/default.nix Normal file
View file

@ -0,0 +1,15 @@
{
services.stash = {
enable = true;
settings = {
host = "100.103.199.4";
port = 9069;
stash = [
{
Path = "/media/stash";
ExcludeImage = true;
}
];
};
};
}