From b20559603072ba2be19f88e6b4fae47cdf2fa2d5 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 13 Dec 2024 01:38:53 +0100 Subject: Fix network addresses --- srv/h-alpha/hardware-configuration.nix | 4 ++-- 1 file 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 = [ -- cgit