diff --git a/users/modules/global/keychain.nix b/users/modules/global/keychain.nix index 01cef80..a3b365e 100644 --- a/users/modules/global/keychain.nix +++ b/users/modules/global/keychain.nix @@ -1,9 +1,11 @@ { config, ... }: { + services.ssh-agent.enable = true; + programs.keychain = { enable = true; + inheritType = "any"; extraFlags = [ "--quiet" "--dir ${config.xdg.configHome}/keychain" ]; - keys = [ "id_ed25519" ]; }; }