diff options
author | lassulus <lassulus@lassul.us> | 2019-01-22 16:28:50 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-01-22 16:28:50 +0100 |
commit | 04297e6c094a13051ee54d700d6fe55ad1f1ede5 (patch) | |
tree | 87184b3c3f79966d23c338324bc33cc09beb773b | |
parent | c893dbd47960335402a9727c879f6f92c104aaf4 (diff) |
l prism.r: add new ip
-rw-r--r-- | lass/1systems/prism/physical.nix | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lass/1systems/prism/physical.nix b/lass/1systems/prism/physical.nix index a2b5efb29..9a84e9d63 100644 --- a/lass/1systems/prism/physical.nix +++ b/lass/1systems/prism/physical.nix @@ -63,9 +63,15 @@ defaultGateway = "95.216.1.129"; # Use google's public DNS server nameservers = [ "8.8.8.8" ]; - interfaces.eth0 = { - ipAddress = "95.216.1.150"; - prefixLength = 26; - }; + interfaces.eth0.ipv4.addresses = [ + { + address = "95.216.1.150"; + prefixLength = 26; + } + { + address = "95.216.1.130"; + prefixLength = 26; + } + ]; }; } |