mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
feat(ssh): add tailscale ssh config
This commit is contained in:
parent
e233efdc88
commit
12a44209b6
1 changed files with 16 additions and 2 deletions
|
|
@ -24,20 +24,34 @@
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
identityFile = [config.sops.secrets."kmeat_mac_mini_ssh_key".path];
|
identityFile = [config.sops.secrets."kmeat_mac_mini_ssh_key".path];
|
||||||
};
|
};
|
||||||
"yggdrasil" = {
|
"yggdrasil.local" = {
|
||||||
hostname = "222.109.216.197";
|
hostname = "222.109.216.197";
|
||||||
user = "poby";
|
user = "poby";
|
||||||
port = 22;
|
port = 22;
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
identityFile = [config.sops.secrets."github_ssh_key".path];
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
||||||
};
|
};
|
||||||
"midgard" = {
|
"midgard.local" = {
|
||||||
hostname = "222.109.239.172";
|
hostname = "222.109.239.172";
|
||||||
user = "poby";
|
user = "poby";
|
||||||
port = 22;
|
port = 22;
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
identityFile = [config.sops.secrets."github_ssh_key".path];
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
||||||
};
|
};
|
||||||
|
"yggdrasil" = {
|
||||||
|
hostname = "yggdrasil.tail6fc192.ts.net";
|
||||||
|
user = "poby";
|
||||||
|
port = 22;
|
||||||
|
identitiesOnly = true;
|
||||||
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
||||||
|
};
|
||||||
|
"midgard" = {
|
||||||
|
hostname = "midgard.tail6fc192.ts.net";
|
||||||
|
user = "poby";
|
||||||
|
port = 22;
|
||||||
|
identitiesOnly = true;
|
||||||
|
identityFile = [config.sops.secrets."github_ssh_key".path];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue