From 1920fe83766277c644c7b31611023fbe605de4f9 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Thu, 3 Nov 2022 16:12:30 +0100 Subject: [PATCH] initrd: add i915 --- hosts/laptop/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index dda4e60..f6c14e3 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -18,7 +18,7 @@ ]; boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" "rtsx_usb_sdmmc" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.kernelModules = [ "i915" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];