diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/carmel/default.nix | 1 | ||||
-rw-r--r-- | hosts/carmel/services.nix | 1 | ||||
-rw-r--r-- | hosts/tahoe/default.nix | 1 | ||||
-rw-r--r-- | hosts/tahoe/services.nix | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index 4f86d90..b50c036 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -9,6 +9,7 @@ "${self}/profiles/hardware/amd.nix" "${self}/profiles/nginx.nix" "${self}/profiles/router.nix" + "${self}/profiles/monitoring/exporter.nix" ]; boot.loader.efi.efiSysMountPoint = "/boot/efi"; diff --git a/hosts/carmel/services.nix b/hosts/carmel/services.nix index f176d78..5b6055e 100644 --- a/hosts/carmel/services.nix +++ b/hosts/carmel/services.nix @@ -1,7 +1,6 @@ { config, pkgs, ... }: { my.services = { monitoring = { - node-exporter.enable = true; promtail.enable = true; }; }; diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix index 2c4d8ec..a5a6533 100644 --- a/hosts/tahoe/default.nix +++ b/hosts/tahoe/default.nix @@ -17,6 +17,7 @@ in "${self}/profiles/git-server.nix" "${self}/profiles/music-server.nix" "${self}/profiles/hardware/amd.nix" + "${self}/profiles/monitoring/exporter.nix" ]; # Use systemd-networkd for networking diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix index 4056df3..b8745e4 100644 --- a/hosts/tahoe/services.nix +++ b/hosts/tahoe/services.nix @@ -21,7 +21,6 @@ in vhostName = "dash.${config.homelab.domain}"; }; promtail.enable = true; - node-exporter.enable = true; }; sendsms.enable = true; |