From b10d5822566c0620966643b6a05107a1e1be35c6 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 23 Jul 2025 22:38:03 +0200 Subject: [PATCH] removes stash module adds docker --- hosts/dnsc-server/default.nix | 2 +- modules/stash/default.nix | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 modules/stash/default.nix 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; - } - ]; - }; - }; -}