1
mirror of https://github.com/wlcx/home.git synced 2026-03-27 22:53:13 +00:00

Compare commits

..

No commits in common. "ad60d86c53e98cb78c19e0258dea6fdb3832b2dd" and "072ff7acdc6b5f1ed10e595b0a2cffbb1fbe0c21" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -107,14 +107,11 @@ in
ssh = { ssh = {
enable = true; enable = true;
enableDefaultConfig = false;
package = pkgs.openssh; # Use modern ssh
includes = [ "~/.ssh/config.local" ]; includes = [ "~/.ssh/config.local" ];
matchBlocks."*" = { matchBlocks."*" = {
user = "samw"; user = "samw";
serverAliveInterval = 30; serverAliveInterval = 30;
serverAliveCountMax = 10; serverAliveCountMax = 10;
compression = true;
}; };
}; };
}; };

View File

@ -17,5 +17,5 @@
"~/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh"; "~/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
}; };
programs.zsh.sessionVariables.SSH_AUTH_SOCK = "$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh"; programs.zsh.sessionVariables.SSH_AUTH_SOCK = "$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
programs.zsh.initContent = "eval $(/opt/homebrew/bin/brew shellenv)"; programs.zsh.initExtra = "eval $(/opt/homebrew/bin/brew shellenv)";
} }