10 lines
209 B
Nix
10 lines
209 B
Nix
|
|
{ user, ... } : {
|
||
|
|
programs.ssh = {
|
||
|
|
enable = true;
|
||
|
|
extraConfig = ''
|
||
|
|
Host *
|
||
|
|
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|