diff --git a/nixos/boxes/foureighty/default.nix b/nixos/boxes/foureighty/default.nix index c6563a38..84673adb 100644 --- a/nixos/boxes/foureighty/default.nix +++ b/nixos/boxes/foureighty/default.nix @@ -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 = { ... }: { diff --git a/nixos/common-services.nix b/nixos/common-services.nix index 104d94cd..ed5fc3a4 100644 --- a/nixos/common-services.nix +++ b/nixos/common-services.nix @@ -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;