From 0d1f33efba8a55bd69f54f8821c2bf8a3b700b6c Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Sun, 7 Jan 2024 14:25:28 +0300 Subject: [PATCH] machines/celerrime: fix all types of USB / Bluetooth devices / input issues Signed-off-by: Ivan Bushchik --- machines/celerrime/hardware.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/machines/celerrime/hardware.nix b/machines/celerrime/hardware.nix index 27c8f21..7fd5d9a 100644 --- a/machines/celerrime/hardware.nix +++ b/machines/celerrime/hardware.nix @@ -3,9 +3,17 @@ { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "usb_storage" "xhci_pci" "usbhid" ]; + boot.initrd.availableKernelModules = [ + "usb-storage" + "xhci_pci" + "usbhid" + "mmc_block" + "xhci_hcd" + "xhci_plat_hcd" + "hid_generic" + ]; boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ ]; + boot.kernelModules = [ "uhid" ]; boot.extraModulePackages = [ ]; fileSystems."/" = {