Switch to LTS kernel 6.1 for touchpad compatibility

The laptop worked fine with older NixOS and Arch installations,
suggesting a kernel regression in 6.12.x. Switching to LTS
kernel 6.1 to test if this resolves the ITE8353 touchpad issue.
This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-30 19:07:32 +02:00
parent 24b01ae4f0
commit 4d688d47da

View file

@ -43,6 +43,10 @@
"hid_sensor_hub" # Prevents touchpad from being properly recognized "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
kernelPackages = pkgs.linuxPackages_6_1;
extraModulePackages = []; extraModulePackages = [];
}; };