From cf5a6bbc00864e88bf9c3e33824872f5efd577f3 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Thu, 18 Dec 2025 13:21:03 +1000 Subject: [PATCH] default to ssh-agent propagation --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index f56d078..4aaa4a2 100644 --- a/flake.nix +++ b/flake.nix @@ -162,6 +162,11 @@ if builtins.elem "-p" node.deploy.ssh.opts then [] else ["-p" (toString node.deploy.ssh.port)] + ) + ++ ( + if builtins.elem "-A" node.deploy.ssh.opts + then [] + else ["-A"] ); }; });