[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
+25 -2
View File
@@ -84,10 +84,28 @@ in {
};
programs.ssh = {
enableDefaultConfig = false;
matchBlocks = {
media = {
"*" = {
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";
};
homeserver = {
user = "jmug";
hostname = "192.168.8.241";
hostname = "100.122.244.59";
forwardAgent = true;
};
devbox = {
user = "jmug";
hostname = "100.102.140.44";
forwardAgent = true;
};
handmade = {
@@ -95,6 +113,11 @@ in {
hostname = "82.180.160.149";
forwardAgent = true;
};
"racknerd" = {
user = "jmug";
hostname = "155.94.155.137";
addKeysToAgent = "yes";
};
};
};