fix: add boot.kernelPackages to fix bootup error with graphics drivers

This commit is contained in:
Ceferino Patino 2026-04-30 12:09:36 -05:00
commit abfcd4adca
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI

View file

@ -15,8 +15,9 @@
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = with pkgs.linuxPackages; [
boot.extraModulePackages = with pkgs.linuxPackages_latest; [
v4l2loopback
];