From 87660c96198981ef1ee570721364c10bf97be83b Mon Sep 17 00:00:00 2001 From: Wekuz Date: Sat, 22 Nov 2025 22:44:54 +0200 Subject: [PATCH] added kernel module --- hosts/opti/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/opti/hardware-configuration.nix b/hosts/opti/hardware-configuration.nix index 8142fc8..ac91fb3 100644 --- a/hosts/opti/hardware-configuration.nix +++ b/hosts/opti/hardware-configuration.nix @@ -4,7 +4,7 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = - [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ]; + [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];