From 24b01ae4f0d765657e1b00945cc4317d679a8d1c Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Mon, 30 Jun 2025 18:59:15 +0200 Subject: [PATCH] Blacklist hid_sensor_hub to fix touchpad The ITE8353 touchpad is still being bound to hid-sensor-hub instead of hid-multitouch. Blacklisting hid_sensor_hub should force it to use the proper touchpad driver. --- machines/little-rascal/hardware-configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/machines/little-rascal/hardware-configuration.nix b/machines/little-rascal/hardware-configuration.nix index d2f83c2..bc55c14 100644 --- a/machines/little-rascal/hardware-configuration.nix +++ b/machines/little-rascal/hardware-configuration.nix @@ -37,9 +37,10 @@ "i2c_hid_acpi" ]; - # Blacklist AMD SFH which interferes with touchpad + # Blacklist modules that interfere with touchpad blacklistedKernelModules = [ - "amd_sfh" # AMD Sensor Fusion Hub - causes touchpad to be misidentified + "amd_sfh" # AMD Sensor Fusion Hub - causes touchpad to be misidentified + "hid_sensor_hub" # Prevents touchpad from being properly recognized ]; extraModulePackages = [];