config/homes/laptop/ssh.nix

11 lines
294 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{
programs.ssh.extraConfig = ''
Host *
IdentityAgent /Users/maddie/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
home.sessionVariables = {
SSH_AUTH_SOCK = "$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
};
}