nix-config/modules/stash/default.nix
2025-07-23 22:35:01 +02:00

22 lines
419 B
Nix

{
pkgs,
...
}:
{
services.stash = {
enable = true;
plugins = [ ];
scrapers = [ ];
settings = {
passwordFile = pkgs.writeText "stash-password" "$2y$10$VcuMbQR7Lfh4gyLkDsidJ.tHpQdRfKXQzVcU/.oI7MmNNuwGMUjaq"; # MyPassword
host = "100.103.199.4";
port = 9069;
stash = [
{
Path = "/media/stash";
ExcludeImage = true;
}
];
};
};
}