diff --git a/hosts/dnsc-server/default.nix b/hosts/dnsc-server/default.nix index 5d09db3..441a2bc 100644 --- a/hosts/dnsc-server/default.nix +++ b/hosts/dnsc-server/default.nix @@ -9,11 +9,11 @@ imports = [ ./hardware-configuration.nix inputs.home-manager.nixosModules.home-manager + ../../modules/docker ../../modules/ups ../../modules/openssh ../../modules/jellyfin ../../modules/syncthing - ../../modules/stash ]; # General diff --git a/modules/stash/default.nix b/modules/stash/default.nix deleted file mode 100644 index e7f62d5..0000000 --- a/modules/stash/default.nix +++ /dev/null @@ -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; - } - ]; - }; - }; -}