From 9f243b89a89eabddfb395dac48c274a75a8b6714 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 29 Sep 2023 18:46:02 +0200 Subject: [PATCH] load kernel modules --- .../hardware-configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hosts/steamdeck.cloonar.com/hardware-configuration.nix b/hosts/steamdeck.cloonar.com/hardware-configuration.nix index 9c16966..3c361f1 100644 --- a/hosts/steamdeck.cloonar.com/hardware-configuration.nix +++ b/hosts/steamdeck.cloonar.com/hardware-configuration.nix @@ -5,7 +5,18 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "hid_generic" "atkbd" "sdhci_pci" "vfat" "nls_cp437" "nls_iso8859-1" ]; + boot.initrd.availableKernelModules = [ + "nvme" + "xhci_pci" + "usbhid" + "hid_generic" "hid_lenovo" "hid_apple" "hid_roccat" + "hid_logitech_hidpp" "hid_logitech_dj" "hid_microsoft" "hid_cherry" + "atkbd" + "sdhci_pci" + "vfat" + "nls_cp437" + "nls_iso8859-1" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ];