15 lines
271 B
Nix
15 lines
271 B
Nix
|
let
|
||
|
secret-sail = import ../../../../secret/hosts/sail.nix;
|
||
|
in
|
||
|
{
|
||
|
matchBlocks = {
|
||
|
"builder-sail" = {
|
||
|
hostname = secret-sail.publicIP;
|
||
|
port = 22;
|
||
|
user = "root";
|
||
|
identityFile = "~/.ssh/Hetzner.pub";
|
||
|
identitiesOnly = true;
|
||
|
};
|
||
|
};
|
||
|
}
|