27 lines
596 B
Nix
27 lines
596 B
Nix
{
|
|
matchBlocks = {
|
|
"builder-sail" = {
|
|
hostname = "sail.ts.kempkens.network";
|
|
port = 22;
|
|
user = "root";
|
|
identityFile = "~/.ssh/Hetzner.pub";
|
|
identitiesOnly = true;
|
|
};
|
|
|
|
"builder-attic" = {
|
|
hostname = "attic.ts.kempkens.network";
|
|
port = 22;
|
|
user = "root";
|
|
identityFile = "~/.ssh/Hetzner.pub";
|
|
identitiesOnly = true;
|
|
};
|
|
|
|
"builder-mediaserver" = {
|
|
hostname = "mediaserver.ts.kempkens.network";
|
|
port = 22;
|
|
user = "root";
|
|
identityFile = "~/.ssh/LAN.pub";
|
|
identitiesOnly = true;
|
|
};
|
|
};
|
|
}
|