[nixbox] Add homeserver and racknerd host configs.

This commit is contained in:
jmug
2026-03-01 16:15:15 -08:00
parent e8ca1e1ad6
commit 5d608cecab
+11 -1
View File
@@ -165,13 +165,23 @@ in {
]; ];
addKeysToAgent = "yes"; addKeysToAgent = "yes";
}; };
"tailscale-jmug" = { "homeserver" = {
user = "jmug"; user = "jmug";
hostname = "100.122.244.59"; hostname = "100.122.244.59";
identityFile = [ identityFile = [
"/home/jmug/.ssh/id_yubikey" # Auto updated symlik that matches all yubikeys. "/home/jmug/.ssh/id_yubikey" # Auto updated symlik that matches all yubikeys.
"/home/jmug/.ssh/id_jmug" # Fallback key with passphrase. "/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"; addKeysToAgent = "yes";
}; };
}; };