From 3985f2c49832726388f2320cd32fbe81ff947a40 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Sat, 18 May 2024 14:36:40 +0200 Subject: [PATCH] update kernel to fix issue with wofi --- absol/hardware-configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/absol/hardware-configuration.nix b/absol/hardware-configuration.nix index 7068bca..99ecb3c 100644 --- a/absol/hardware-configuration.nix +++ b/absol/hardware-configuration.nix @@ -8,8 +8,9 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "ahci" "usbhid" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];