diff options
| author | Linnea Gräf <nea@nea.moe> | 2024-12-13 01:38:53 +0100 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2024-12-13 01:38:53 +0100 |
| commit | b20559603072ba2be19f88e6b4fae47cdf2fa2d5 (patch) | |
| tree | 4abfaf25388dc4462b2a5559f89f9b12d497aae7 /srv | |
| parent | 1febb230d49f725bfb77fa1fd005807122180ba6 (diff) | |
| download | nix-infra-b20559603072ba2be19f88e6b4fae47cdf2fa2d5.tar.gz nix-infra-b20559603072ba2be19f88e6b4fae47cdf2fa2d5.tar.bz2 nix-infra-b20559603072ba2be19f88e6b4fae47cdf2fa2d5.zip | |
Fix network addresses
Diffstat (limited to 'srv')
| -rw-r--r-- | srv/h-alpha/hardware-configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srv/h-alpha/hardware-configuration.nix b/srv/h-alpha/hardware-configuration.nix index c59f5a7..8868ede 100644 --- a/srv/h-alpha/hardware-configuration.nix +++ b/srv/h-alpha/hardware-configuration.nix @@ -27,8 +27,8 @@ systemd.network.networks."30-wan" = { matchConfig.Name = "enp1s0"; addresses = [ - "2a01:4f9:c012:5dd3::/64" - "65.21.54.251" + { Address = "65.21.54.251"; } + { Address = "2a01:4f9:c012:5dd3::/64"; } ]; routes = [ |
