From 29fef229d86eea21e4228bfed6f8b10b18241294 Mon Sep 17 00:00:00 2001 From: chn Date: Sat, 23 Dec 2023 15:31:44 +0800 Subject: [PATCH] Revert "system: try to fix ipv6" This reverts commit 303d67ca06e33c165903435004163d92f97df77e. --- modules/system/initrd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/initrd.nix b/modules/system/initrd.nix index ebcacfdd..7aa5da68 100644 --- a/modules/system/initrd.nix +++ b/modules/system/initrd.nix @@ -25,7 +25,7 @@ inputs: boot = { initrd.network = { enable = true; ssh = { enable = true; hostKeys = initrd.sshd.hostKeys; }; }; - kernelParams = [ "ip=dhcp,auto6" ]; + kernelParams = [ "ip=dhcp" ]; }; } )