From 62d3e7c1e39ee57e2f48e9f18a352a7505700451 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Tue, 6 Aug 2024 16:12:58 -0400 Subject: [PATCH] fix network config on palatine-hill Signed-off-by: ahuston-0 --- systems/palatine-hill/networking.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/systems/palatine-hill/networking.nix b/systems/palatine-hill/networking.nix index d50bc32..2506506 100644 --- a/systems/palatine-hill/networking.nix +++ b/systems/palatine-hill/networking.nix @@ -20,16 +20,14 @@ matchConfig.Name = "eno1"; address = [ "192.168.76.2/24" ]; routes = [ { routeConfig.Gateway = "192.168.76.1"; } ]; - networkConfig.IPForward = "yes"; + IPForward = "yes"; linkConfig.RequiredForOnline = "routable"; }; # default lan settings "60-def-lan" = { matchConfig.type = "ether"; - networkConfig = { - DHCP = "ipv4"; - IPForward = "yes"; - }; + DHCP = "ipv4"; + IPForward = "yes"; #routes = [ { routeConfig.Gateway = "192.168.76.1"; } ]; linkConfig.RequiredForOnline = "no"; };