From e72b9a144af565d9f0995919ae111de18293a36f Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Tue, 4 Nov 2025 11:53:25 +0100 Subject: [PATCH] fix: initrd kernel param Signed-off-by: Lander Van den Bulcke --- hosts/hyp-01/modules/networking.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/hyp-01/modules/networking.nix b/hosts/hyp-01/modules/networking.nix index 2f203b2..37fc9d2 100644 --- a/hosts/hyp-01/modules/networking.nix +++ b/hosts/hyp-01/modules/networking.nix @@ -40,9 +40,7 @@ systemd.network.networks."10-uplink".networkConfig.Address = config.networking.hyp-01.ipv6.address; - boot.initrd.systemd.network.enable = true; - boot.initrd.systemd.network.networks."10-uplink" = config.systemd.network.networks."10-uplink"; - + boot.kernelParams = [ "ip=dhcp" ]; boot.initrd.network = { enable = true;