ssh temp fix for stable rn

This commit is contained in:
2025-11-11 17:36:06 -06:00
parent 005d0451f5
commit b4bba876ae

View File

@@ -15,10 +15,20 @@ in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
programs.ssh = { programs.ssh = {
enable = true; enable = true;
enableDefaultConfig = true; #enableDefaultConfig = true;
matchBlocks = { matchBlocks = {
"*" = { "*" = {
identityFile = "${home_dir}/.ssh/id_blake"; identityFile = "${home_dir}/.ssh/id_blake";
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
}; };
"git.blakedheld.xyz" = { "git.blakedheld.xyz" = {
user = "gitea"; user = "gitea";