try to disable broken touchpad functionality
This commit is contained in:
parent
0670564334
commit
0d176c3fd0
2 changed files with 13 additions and 4 deletions
|
@ -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 = { ... }: {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue