try to disable broken touchpad functionality

This commit is contained in:
Cyryl Płotnicki 2022-10-31 19:46:42 +00:00
parent 0670564334
commit 0d176c3fd0
2 changed files with 13 additions and 4 deletions

View file

@ -38,7 +38,20 @@
hardware.trackpoint.enable = true;
services.hardware.bolt.enable = true;
hardware.video.hidpi.enable = lib.mkDefault true;
services.tp-auto-kbbl.enable = true;
services.xserver = {
libinput = {
enable = lib.mkForce false;
touchpad = {
tapping = false;
clickMethod = "none";
naturalScrolling = false;
disableWhileTyping = true;
};
};
};
services.fprintd = { enable = true; };
home-manager.users.cyryl = { ... }: {

View file

@ -33,12 +33,8 @@
enable = true;
touchpad = {
naturalScrolling = false;
clickMethod = "clickfinger";
disableWhileTyping = true;
middleEmulation = false;
buttonMapping = "1 99 3 4 5 6 7";
};
mouse.middleEmulation = false;
};
useGlamor = true;