home/ssh | update settings

This commit is contained in:
Don Harper 2025-07-28 15:13:49 -05:00
parent cc1b9f25e8
commit 62f50447e9

View file

@ -3,12 +3,16 @@
ssh = {
enable = true;
compression = true;
addKeysToAgent = "yes";
serverAliveCountMax = 2;
serverAliveInterval = 10;
hashKnownHosts = true;
matchBlocks = {
"git" = {
port = 2020;
identityFile = "/home/don/.ssh/git";
};
"git.trex-halfbeak.ts.net" = { identityFile = "/home/don/.ssh/git"; };
"github.com" = { identityFile = "/home/don/.ssh/git"; };
"gitlab.com" = { identityFile = "/home/don/.ssh/git"; };
"homeassistant.home.duckland.org" = { user = "root"; };
@ -17,6 +21,9 @@
hostname = "wise.dreamhost.com";
};
};
extraConfig = ''
ConnectTimeout 5
'';
};
};
}