From 405249dec4dc10962a81974e9ca2c9f8fb82d359 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 20 Jan 2025 13:23:48 -0500 Subject: [PATCH] global/keychain: properly defer to existing ssh-agent --- users/modules/global/keychain.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/modules/global/keychain.nix b/users/modules/global/keychain.nix index a3b365e..018b010 100644 --- a/users/modules/global/keychain.nix +++ b/users/modules/global/keychain.nix @@ -5,7 +5,7 @@ programs.keychain = { enable = true; inheritType = "any"; - extraFlags = [ "--quiet" "--dir ${config.xdg.configHome}/keychain" ]; + extraFlags = [ "--quiet" "--quick" "--systemd" "--dir ${config.xdg.configHome}/keychain" "--agents \"\"" ]; keys = [ "id_ed25519" ]; }; }