diff --git a/hosts/h001/mods/default.nix b/hosts/h001/mods/default.nix index 274d1760..8f9c9bf7 100644 --- a/hosts/h001/mods/default.nix +++ b/hosts/h001/mods/default.nix @@ -6,7 +6,8 @@ ./litellm.nix ./nixarr.nix ./monitoring.nix - ./monitoring_new.nix + ./monitoring_hub.nix + ./monitoring_agent.nix ./pinchflat.nix ./openwebui.nix ./trilium.nix diff --git a/hosts/h001/mods/monitoring_new.nix b/hosts/h001/mods/monitoring_new.nix deleted file mode 100644 index a780b5e7..00000000 --- a/hosts/h001/mods/monitoring_new.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - inputs, - ... -}: -let - declaration = "services/monitoring/beszel-hub.nix"; - nixpkgs = inputs.beszel-nixpkgs; - pkgs = import nixpkgs { - system = "x86_64-linux"; - config.allowUnfree = true; - }; -in -{ - disabledModules = [ declaration ]; - imports = [ "${nixpkgs}/nixos/modules/${declaration}" ]; - config = { - services.beszel.hub = { - package = pkgs.beszel; - enable = true; - port = 8090; - host = "100.64.0.13"; - environment = { - # DISABLE_PASSWORD_AUTH = "true"; # Once sso is setup - }; - }; - }; -}