1
0
Fork 0
dotfiles/home/programs/ssh/shared/builder.nix

20 lines
390 B
Nix
Raw Normal View History

2022-08-08 21:43:47 +00:00
{
matchBlocks = {
"builder-sail" = {
2023-04-04 15:20:09 +00:00
hostname = "sail-ts.kempkens.io";
port = 22;
user = "root";
identityFile = "~/.ssh/Hetzner.pub";
identitiesOnly = true;
};
"builder-attic" = {
2023-04-08 20:48:08 +00:00
hostname = "attic-ts.kempkens.io";
2022-08-08 21:43:47 +00:00
port = 22;
user = "root";
identityFile = "~/.ssh/Hetzner.pub";
identitiesOnly = true;
};
};
}