From 92a2c73b8ac354358834117a3044a86e4fd606da Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Mon, 30 Jun 2025 19:15:04 +0200 Subject: [PATCH] Remove blacklisted modules and test with LTS kernel The LTS kernel (6.1) is handling the ITE8353 touchpad much better. Removing blacklisted modules to see if the proper drivers can now work correctly with the improved kernel support. --- machines/little-rascal/hardware-configuration.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/machines/little-rascal/hardware-configuration.nix b/machines/little-rascal/hardware-configuration.nix index dcdd191..495d8d3 100644 --- a/machines/little-rascal/hardware-configuration.nix +++ b/machines/little-rascal/hardware-configuration.nix @@ -40,14 +40,7 @@ "evdev" ]; - # Blacklist modules that interfere with touchpad - blacklistedKernelModules = [ - "amd_sfh" # AMD Sensor Fusion Hub - causes touchpad to be misidentified - "hid_sensor_hub" # Prevents touchpad from being properly recognized - ]; - - # Use LTS kernel for better hardware compatibility - # The laptop worked with older kernels, current 6.12.x may have regressions + # Use LTS kernel for better hardware compatibility kernelPackages = pkgs.linuxPackages_6_1; extraModulePackages = [];