1
0
Fork 0
dotfiles/home/programs/ssh/shared/work.nix
2024-03-28 12:09:37 +01:00

55 lines
1.2 KiB
Nix

{ secret, ... }:
{
matchBlocks = {
"git.app.nedeco.de" = {
port = 22;
user = "git";
identityFile = "~/.ssh/nedeco_gitlab.pub";
identitiesOnly = true;
compression = true;
};
"nedeco-smartos-hosting" = {
host = "10.0.90.*";
port = 22;
user = "root";
identityFile = "~/.ssh/nedeco.pub";
identitiesOnly = true;
};
"msc.nedeco.local" = {
port = 22;
user = "root";
identityFile = "~/.ssh/nedeco.pub";
identitiesOnly = true;
};
"headnode.nedeco-hosting.local" = {
hostname = "10.0.90.13";
port = 22;
user = "root";
extraOptions = {
PreferredAuthentications = "password";
};
};
"cnode01.nedeco-hosting.local" = {
hostname = "10.0.88.45";
port = 22;
user = "root";
proxyCommand = "ssh headnode.nedeco-hosting.local nc -w 120 %h %p";
extraOptions = {
PreferredAuthentications = "password";
};
};
"192.168.8.141" = {
port = 22;
user = "root";
identityFile = "~/.ssh/nedeco.pub";
identitiesOnly = true;
};
} // secret.ssh.matchBlocks.work;
}