thinkpad-t14-gen1: add a kernel param for touchpad to work properly

This commit is contained in:
kurogeek 2024-08-05 15:11:30 +07:00 committed by mergify[bot]
parent f568ffb601
commit 6ed5521636

View file

@ -14,7 +14,11 @@
# Force use of the thinkpad_acpi driver for backlight control. # Force use of the thinkpad_acpi driver for backlight control.
# This allows the backlight save/load systemd service to work. # This allows the backlight save/load systemd service to work.
boot.kernelParams = [ "acpi_backlight=native" ]; boot.kernelParams = [
"acpi_backlight=native"
# Needed for touchpad to work properly (click doesn't register by pushing down the touchpad).
"psmouse.synaptics_intertouch=0"
];
# see https://github.com/NixOS/nixpkgs/issues/69289 # see https://github.com/NixOS/nixpkgs/issues/69289
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest; boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;