diff options
author | makefu <github@syntax-fehler.de> | 2019-01-28 08:32:05 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-01-28 08:32:05 +0100 |
commit | 7bc36518d1afc1050994e0806477fed2c8fa45da (patch) | |
tree | f801d55e368f7ce7c10a97482808eeab9491f45f /lass/1systems/prism/physical.nix | |
parent | 0c25e9790578821a1038831ea852c6bfbc83ff97 (diff) | |
parent | 56a0b3f0020b4465d1f1d573e5d427d8c702fd86 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/1systems/prism/physical.nix')
-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; + } + ]; }; } |