22 lines
419 B
Nix
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;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|