pinwheel: Use programs.ssh.settings

This commit is contained in:
Alexander Heldt
2026-08-16 14:19:58 +02:00
parent 77628fd6bb
commit 81a1b9714f
+27 -27
View File
@@ -36,49 +36,49 @@
enable = true; enable = true;
enableDefaultConfig = false; enableDefaultConfig = false;
matchBlocks = { settings = {
"manatee" = { "manatee" = {
hostname = "manatee"; HostName = "manatee";
user = "alex"; User = "alex";
identityFile = "/home/alex/.ssh/alex.pinwheel-manatee"; IdentityFile = "/home/alex/.ssh/alex.pinwheel-manatee";
port = 1122; Port = 1122;
}; };
"backwards" = { "backwards" = {
hostname = "backwards"; HostName = "backwards";
user = "alex"; User = "alex";
identityFile = "/home/alex/.ssh/alex.pinwheel-backwards"; IdentityFile = "/home/alex/.ssh/alex.pinwheel-backwards";
port = 1122; Port = 1122;
}; };
"tadpole" = { "tadpole" = {
hostname = "65.21.106.222"; HostName = "65.21.106.222";
user = "alex"; User = "alex";
identityFile = "/home/alex/.ssh/alex.pinwheel-tadpole"; IdentityFile = "/home/alex/.ssh/alex.pinwheel-tadpole";
port = 1122; Port = 1122;
}; };
"github.com" = { "github.com" = {
hostname = "github.com"; HostName = "github.com";
identityFile = "/home/alex/.ssh/alex.pinwheel-github.com"; IdentityFile = "/home/alex/.ssh/alex.pinwheel-github.com";
}; };
"git.ppp.pm" = { "git.ppp.pm" = {
hostname = "git.ppp.pm"; HostName = "git.ppp.pm";
identityFile = "/home/alex/.ssh/alex.pinwheel-git.ppp.pm"; IdentityFile = "/home/alex/.ssh/alex.pinwheel-git.ppp.pm";
}; };
"*" = { "*" = {
forwardAgent = false; ForwardAgent = false;
addKeysToAgent = "yes"; AddKeysToAgent = "yes";
compression = false; Compression = false;
serverAliveInterval = 0; ServerAliveInterval = 0;
serverAliveCountMax = 3; ServerAliveCountMax = 3;
hashKnownHosts = false; HashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts"; UserKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no"; ControlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p"; ControlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no"; ControlPersist = "no";
}; };
}; };
}; };