From 5758556ce9f50273a2d20f3c513d3408e7faf27b Mon Sep 17 00:00:00 2001 From: Henri Dohmen Date: Tue, 23 Sep 2025 11:08:57 +0200 Subject: [PATCH] fix touchpad click --- host/c2/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/host/c2/default.nix b/host/c2/default.nix index 8a3b174..87e3151 100644 --- a/host/c2/default.nix +++ b/host/c2/default.nix @@ -16,6 +16,9 @@ boot.loader.efi.efiSysMountPoint = "/boot/efi"; boot.resumeDevice = "/dev/disk/by-label/nixswap"; + # Fix for touchpad physical click not working + boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ]; + powerManagement = { enable = true; cpuFreqGovernor = "ondemand";