removes stash module adds docker

This commit is contained in:
Dennis Schoepf 2025-07-23 22:38:03 +02:00
parent 75a9d59c9f
commit b10d582256
2 changed files with 1 additions and 25 deletions

View file

@ -9,11 +9,11 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
../../modules/docker
../../modules/ups ../../modules/ups
../../modules/openssh ../../modules/openssh
../../modules/jellyfin ../../modules/jellyfin
../../modules/syncthing ../../modules/syncthing
../../modules/stash
]; ];
# General # General

View file

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