From 220a4acd5201c93d92a61538fe1e82779286cab5 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Tue, 18 Nov 2025 22:28:36 -0600 Subject: [PATCH] add agent --- hosts/h001/mods/default.nix | 3 ++- hosts/h001/mods/monitoring_new.nix | 27 --------------------------- 2 files changed, 2 insertions(+), 28 deletions(-) delete mode 100644 hosts/h001/mods/monitoring_new.nix 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 - }; - }; - }; -}