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

Compare commits

...

2 Commits

Author SHA1 Message Date
ad60d86c53 ssh: squish warning 2026-02-27 18:22:24 +00:00
ac362b6667 macs: squish home manager warning (again?) 2026-02-05 01:04:38 +00:00
2 changed files with 4 additions and 1 deletions

View File

@ -107,11 +107,14 @@ 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.initExtra = "eval $(/opt/homebrew/bin/brew shellenv)"; programs.zsh.initContent = "eval $(/opt/homebrew/bin/brew shellenv)";
} }