diff options
Diffstat (limited to 'machines/nyc01/default.nix')
| -rw-r--r-- | machines/nyc01/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/machines/nyc01/default.nix b/machines/nyc01/default.nix index b295d1a..83c346d 100644 --- a/machines/nyc01/default.nix +++ b/machines/nyc01/default.nix @@ -6,6 +6,23 @@ in networking = { domain = "ns.vapor.systems"; hostName = "nyc01"; + + interfaces.eth0 = { + ipv4.addresses = [{ + address = "207.246.124.62"; + prefixLength = 23; + }]; + ipv6.addresses = [{ + address = "2001:19f0:5:13df:5400:3ff:fed5:f26c"; + prefixLength = 64; + }]; + }; + + defaultGateway = "207.246.124.1"; + defaultGateway6 = { + address = "fe80::fc00:3ff:fed5:f26c"; + interface = "eth0"; + }; }; pubKey = |
