fixed initrd not getting IP address

This commit is contained in:
Elias Gasparis 2025-05-11 16:31:54 +08:00
parent 2eb97ddc2c
commit 6748c4050a

View file

@ -11,6 +11,8 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ "r8169" ]; #added for remote unlock, wifi is rtl8188ee, r8169 eth boot.initrd.kernelModules = [ "r8169" ]; #added for remote unlock, wifi is rtl8188ee, r8169 eth
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.initrd.network.udhcpc.enable = true;
boot.initrd.network.flushBeforeStage2 = true;
boot.kernelParams = [ ]; boot.kernelParams = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];