From 6f6d84b21a373259ed77db6b8502a566bd52e094 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 3 Nov 2024 20:47:11 -0800 Subject: [PATCH] Added bug fix for networking service failure --- config/networking.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/networking.nix b/config/networking.nix index c691976..68c587c 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -1,4 +1,4 @@ -{ ip_address, hostname, open_ports }: +{ ip_address, hostname }: { # Configure hostname. networking.hostName = hostname; @@ -8,7 +8,7 @@ networking.useNetworkd= true; # Bug fix - systemd.services.NetworkManager-wait-online.enable = false; + systemd.services.systemd-networkd-wait-online.enable = false; networking.defaultGateway = { address = ip_address;