Add internet networking service for direct SSH to public IPs

This commit is contained in:
Berwn
2026-06-16 18:04:29 +07:00
parent a49aea3c7a
commit 6783ad7c17
+10
View File
@@ -29,6 +29,16 @@
roles.server.tags.nixos = { }; roles.server.tags.nixos = { };
}; };
# Direct SSH to public IPs — clan's priority-1 connection path, with the
# ZeroTier mesh and Tor kept as automatic fallbacks. Raw IPs (not the
# ns1/ns2 DNS names) so reaching these hosts never depends on their own
# DNS being up.
internet = {
roles.default.machines.control.settings.host = "77.42.68.181";
roles.default.machines.ns1.settings.host = "46.224.170.206";
roles.default.machines.ns2.settings.host = "157.180.70.82";
};
# Recovery root password for console access when a machine fails to boot. # Recovery root password for console access when a machine fails to boot.
emergency-access = { emergency-access = {
roles.default.tags.nixos = { }; roles.default.tags.nixos = { };