default to ssh-agent propagation

This commit is contained in:
do butterflies cry? 2025-12-18 13:21:03 +10:00
parent 31b8c6f163
commit cf5a6bbc00

View file

@ -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"]
);
};
});