From 4e875f654f0318c10531b376d6d7d0029ea35e09 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sat, 27 Dec 2025 11:57:34 -0600 Subject: [PATCH] ssh config --- homeManagerModules/ssh.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/homeManagerModules/ssh.nix b/homeManagerModules/ssh.nix index 550505d..5eac020 100644 --- a/homeManagerModules/ssh.nix +++ b/homeManagerModules/ssh.nix @@ -38,6 +38,10 @@ hostname = "192.168.1.110"; user = "root"; }; + "gitea" = { + hostname = "192.168.1.104"; + user = "john"; + }; "hermes" = { hostname = "192.168.1.150"; user = "root"; @@ -71,6 +75,8 @@ identitiesOnly = true; identityFile = "~/.ssh/id_ed25519"; certificateFile = "~/.ssh/id_ed25519-cert.pub"; + addKeysToAgent = "yes"; + forwardAgent = true; }; }) (lib.mkIf (config.profile == "work") {