From 5d608cecab06a3039199606e4fdb2a1c6cdb7607 Mon Sep 17 00:00:00 2001 From: jmug Date: Sun, 1 Mar 2026 16:15:15 -0800 Subject: [PATCH] [nixbox] Add homeserver and racknerd host configs. --- hosts/nixbox/home.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/hosts/nixbox/home.nix b/hosts/nixbox/home.nix index 298e38b..40e470a 100644 --- a/hosts/nixbox/home.nix +++ b/hosts/nixbox/home.nix @@ -165,13 +165,23 @@ in { ]; addKeysToAgent = "yes"; }; - "tailscale-jmug" = { + "homeserver" = { user = "jmug"; hostname = "100.122.244.59"; identityFile = [ "/home/jmug/.ssh/id_yubikey" # Auto updated symlik that matches all yubikeys. "/home/jmug/.ssh/id_jmug" # Fallback key with passphrase. ]; + forwardAgent = true; + addKeysToAgent = "yes"; + }; + "racknerd" = { + user = "jmug"; + hostname = "155.94.155.137"; + identityFile = [ + "/home/jmug/.ssh/id_yubikey" # Auto updated symlik that matches all yubikeys. + "/home/jmug/.ssh/id_jmug" # Fallback key with passphrase. + ]; addKeysToAgent = "yes"; }; };