From 51335f144bede2871d287069f736441343166001 Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Mon, 30 Jun 2025 19:25:33 +0200 Subject: [PATCH] Try Linux 5.15 LTS kernel for touchpad compatibility 6.1 LTS improved I2C communication significantly, but hidraw device still not created. Trying 5.15 LTS since laptop worked with older distros. --- machines/little-rascal/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/little-rascal/hardware-configuration.nix b/machines/little-rascal/hardware-configuration.nix index 0af1b85..bf10a8a 100644 --- a/machines/little-rascal/hardware-configuration.nix +++ b/machines/little-rascal/hardware-configuration.nix @@ -41,7 +41,7 @@ ]; # Use LTS kernel for better hardware compatibility - kernelPackages = pkgs.linuxPackages_6_1; + kernelPackages = pkgs.linuxPackages_5_15; extraModulePackages = []; };