From 241347b92602165fe3a781818db6ea58c03b499d Mon Sep 17 00:00:00 2001 From: "Frankie B." Date: Sun, 18 Feb 2024 01:09:22 +0000 Subject: Janky "fix" to make 1pass git/ssh work --- homes/floppydisk/ssh.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'homes/floppydisk/ssh.nix') diff --git a/homes/floppydisk/ssh.nix b/homes/floppydisk/ssh.nix index 99e77c5..e59d218 100644 --- a/homes/floppydisk/ssh.nix +++ b/homes/floppydisk/ssh.nix @@ -12,6 +12,10 @@ in { programs.ssh = { enable = true; forwardAgent = _1passwordAgent.enable; - extraConfig = lib.optionalString _1passwordAgent.enable "IdentityAgent ${_1passwordAgent.path}"; + extraConfig = '' + Host * + IdentityAgent ~/.1password/agent.sock + ''; }; -} \ No newline at end of file +} + -- cgit v1.2.3-54-g00ecf