From 5ca06a9ac747b3b92a74c3f1aae61d3dff059379 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Thu, 29 May 2025 09:05:19 -0500 Subject: [PATCH] ssh indentities only Signed-off-by: jolheiser --- apps/nogui/ssh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/nogui/ssh.nix b/apps/nogui/ssh.nix index afc35e7..b6afe16 100644 --- a/apps/nogui/ssh.nix +++ b/apps/nogui/ssh.nix @@ -3,6 +3,9 @@ programs.ssh = { enable = true; includes = [ config.age.secrets.ssh-config.path ]; + extraConfig = '' + IdentitiesOnly yes + ''; }; services.ssh-agent.enable = true; }