unmap middle button on foureighty as it's broken

This commit is contained in:
Cyryl Płotnicki 2022-10-31 20:08:38 +00:00
parent 0d176c3fd0
commit 374bd891de

View file

@ -42,12 +42,17 @@
services.xserver = { services.xserver = {
libinput = { libinput = {
enable = lib.mkForce false; enable = true;
touchpad = { touchpad = {
tapping = false; tapping = true;
clickMethod = "none";
naturalScrolling = false; naturalScrolling = false;
middleEmulation = false;
disableWhileTyping = true; disableWhileTyping = true;
buttonMapping = "1 0 3 4 5 6 7 8 9 10";
};
mouse = {
middleEmulation = false;
buttonMapping = "1 0 3 4 5 6 7 8 9 10";
}; };
}; };