From 7f1f44174a69a7b3900ad7871cea967ed646cadb Mon Sep 17 00:00:00 2001 From: Timo Bingmann Date: Thu, 6 Nov 2025 08:28:22 -0800 Subject: [PATCH] enable forwardAgent for private hosts --- home/private/ssh-hosts.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/private/ssh-hosts.nix b/home/private/ssh-hosts.nix index a9dc1cd..3fac2c1 100644 --- a/home/private/ssh-hosts.nix +++ b/home/private/ssh-hosts.nix @@ -12,30 +12,36 @@ "fs1" = { hostname = "fs1.t1.xyz"; identityFile = tb1; + forwardAgent = true; }; "fs1.local" = { hostname = "192.168.50.100"; identityFile = tb1; + forwardAgent = true; }; "tr1" = { hostname = "tr1.t1.xyz"; port = 22001; identityFile = tb1; + forwardAgent = true; }; "tr1.local" = { hostname = "192.168.50.101"; identityFile = tb1; + forwardAgent = true; }; # Cloud Machines "t1" = { hostname = "95.216.215.4"; identityFile = tb1; + forwardAgent = true; }; "oc1" = { hostname = "64.181.254.177"; identityFile = tb1; + forwardAgent = true; }; }; };