Touchpad: Difference between revisions

From NixOS Wiki
imported>Mickours
Add touchpad bug workaround for clickpad missing on kernel upgrade
 
imported>Mickours
mNo edit summary
Line 5: Line 5:


To restore the previous behavior, add to your Nixos hardware configuration:
To restore the previous behavior, add to your Nixos hardware configuration:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
   # Avoid touchpad click to tap (clickpad) bug. For more detail see:
   # Avoid touchpad click to tap (clickpad) bug. For more detail see:

Revision as of 15:12, 16 August 2023

Clickpad issues

If your touchpad physical click (or clickpad) like for Lenovo Thinkpad or MacBook touchpad is disabled after a kernel update, this might be due to a kernel bug on the 6.1+ Linux.

To restore the previous behavior, add to your Nixos hardware configuration:

  # Avoid touchpad click to tap (clickpad) bug. For more detail see:
  # https://wiki.archlinux.org/title/Touchpad_Synaptics#Touchpad_does_not_work_after_resuming_from_hibernate/suspend
  boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ];