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

15 lines
271 B
Nix
Raw Normal View History

2022-08-08 21:43:47 +00:00
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;
};
};
}