From 60e2450c66c721b2d8d72313e206f7545e26dce2 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 21 Jul 2026 20:04:23 -0500 Subject: [PATCH] chore: proxy hermes dashboard --- hosts/unstable/hermes/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/unstable/hermes/default.nix b/hosts/unstable/hermes/default.nix index d980fc0..4b4f032 100644 --- a/hosts/unstable/hermes/default.nix +++ b/hosts/unstable/hermes/default.nix @@ -1,5 +1,7 @@ { + config, modulesPath, + lib, top, ... }: @@ -13,6 +15,10 @@ enable = true; nebulaIp = "10.157.0.8"; }; + proxies = lib.genAttrs' [ "thehellings.lan" "nebula.thehellings.com" "shire-zebra.ts.net" ] ( + name: + (lib.nameValuePair "${config.networking.hostName}.${name}" { target = "http://127.0.0.1:9119"; }) + ); }; nix.settings = { sandbox = false;