[macbook] SSH updates.

This commit is contained in:
jmug
2026-03-04 02:06:00 -08:00
parent 5d608cecab
commit fe1c287242
3 changed files with 31 additions and 7 deletions
+5 -4
View File
@@ -1,9 +1,10 @@
{ user, ... } : {
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
matchBlocks = {
"*" = {
identityAgent = "${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
};
};
};
}