fix: add e1000e kernel module to initrd

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-11-04 12:59:03 +01:00
parent e72b9a144a
commit 5cd943d3e5
Signed by: lander
GPG key ID: 0142722B4B0C536F

View file

@ -41,7 +41,10 @@
systemd.network.networks."10-uplink".networkConfig.Address = config.networking.hyp-01.ipv6.address;
boot.kernelParams = [ "ip=dhcp" ];
boot.initrd.network = {
boot.initrd = {
availableKernelModules = [ "e1000e" ];
network = {
enable = true;
ssh = {
@ -55,7 +58,6 @@
];
};
};
boot.initrd.kernelModules = [ "igb" ];
};
};
}