11 lines
294 B
Nix
11 lines
294 B
Nix
{
|
|
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";
|
|
};
|
|
}
|