From 8791c29402d749bc14e8a9b4b591e0bbe77c9543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 7 Feb 2026 17:43:06 +0100 Subject: [PATCH] hosts: enable homelab-deploy listener on pgdb1, nats1, jelly01 Enable vault.enable and homelab.deploy.enable for these hosts to allow NATS-based remote deployments and expose metrics on port 9972. Co-Authored-By: Claude Opus 4.5 --- hosts/jelly01/configuration.nix | 3 +++ hosts/nats1/configuration.nix | 3 +++ hosts/pgdb1/configuration.nix | 3 +++ 3 files changed, 9 insertions(+) diff --git a/hosts/jelly01/configuration.nix b/hosts/jelly01/configuration.nix index 394f6b9..289a577 100644 --- a/hosts/jelly01/configuration.nix +++ b/hosts/jelly01/configuration.nix @@ -61,6 +61,9 @@ # Or disable the firewall altogether. networking.firewall.enable = false; + vault.enable = true; + homelab.deploy.enable = true; + zramSwap = { enable = true; }; diff --git a/hosts/nats1/configuration.nix b/hosts/nats1/configuration.nix index ea64abe..09bc874 100644 --- a/hosts/nats1/configuration.nix +++ b/hosts/nats1/configuration.nix @@ -59,5 +59,8 @@ # Or disable the firewall altogether. networking.firewall.enable = false; + vault.enable = true; + homelab.deploy.enable = true; + system.stateVersion = "23.11"; # Did you read the comment? } diff --git a/hosts/pgdb1/configuration.nix b/hosts/pgdb1/configuration.nix index 7ee76a9..9b5c1ec 100644 --- a/hosts/pgdb1/configuration.nix +++ b/hosts/pgdb1/configuration.nix @@ -59,5 +59,8 @@ # Or disable the firewall altogether. networking.firewall.enable = false; + vault.enable = true; + homelab.deploy.enable = true; + system.stateVersion = "23.11"; # Did you read the comment? }