feat(ssh): add tailscale ssh config

This commit is contained in:
Poby 2026-05-21 00:28:46 +09:00
parent e233efdc88
commit 12a44209b6
No known key found for this signature in database

View file

@ -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];
};
}; };
}; };
} }