darwin: ensure SSH_AUTH_SOCK is always set
Alan Pearce alan@alanpearce.eu
Fri, 23 Jun 2023 07:16:40 +0200
1 files changed, 7 insertions(+), 4 deletions(-)
jump to
M user/settings/darwin.nix → user/settings/darwin.nix
@@ -72,7 +72,7 @@ ProcessType = "Background"; LowPriorityBackgroundIO = true; }; }; - set-xdg-cache-home = { + setenv = { enable = true; config = { @@ -81,6 +81,8 @@ "/bin/launchctl" "setenv" "XDG_CACHE_HOME" config.xdg.cacheHome + "SSH_AUTH_SOCK" + config.programs.zsh.sessionVariables.SSH_AUTH_SOCK ]; RunAtLoad = true; StandardErrorPath = "/dev/null"; @@ -137,12 +139,13 @@ dig = "dig +noall +answer"; }; + programs.zsh.sessionVariables = { + SSH_AUTH_SOCK = "~/.strongbox/agent.sock"; + }; + programs.zsh.envExtra = '' SHELL_SESSIONS_DISABLE=1 path+=($HOME/Library/Python/3.9/bin) - ''; - programs.ssh.extraConfig = '' - IdentityAgent ~/.strongbox/agent.sock ''; home.activation.linkStrongboxSSHAgentSocket = lib.hm.dag.entryAfter [ "writeBoundary" ] '' if [[ ! -d ~/.strongbox ]]