about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2017-06-29 16:35:14 +0100
committerdevhell <devhell@mailfresser.de>2017-06-29 16:44:32 +0100
commitf23f816334e1724a41741d8c31fd6f8ae9d35330 (patch)
tree91803ee9d5ada09b05aa2ebd26aaa0bff5c68682 /machines
parentddca658efac5792833ce3bb6ec0bf9e7399b9090 (diff)
machines/titan: Disable synaptics in favor of libinput
Let's see how the touchpad on this new laptop behaves with libinput
instead of synaptics.

Signed-off-by: devhell <devhell@mailfresser.de>
Diffstat (limited to 'machines')
-rw-r--r--machines/devhell/titan.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/machines/devhell/titan.nix b/machines/devhell/titan.nix
index a457cc3c..a3ac965a 100644
--- a/machines/devhell/titan.nix
+++ b/machines/devhell/titan.nix
@@ -94,11 +94,16 @@
     layout = "gb";
     videoDrivers = [ "intel" ];
 
-    synaptics = {
+    libinput = {
       enable = true;
-      twoFingerScroll = true;
-      palmDetect = true;
+      disableWhileTyping = true;
+      middleEmulation = true;
     };
+#    synaptics = {
+#      enable = true;
+#      twoFingerScroll = true;
+#      palmDetect = true;
+#    };
 
     # XXX: Factor out and make DRY, because a lot of the stuff here is
     # duplicated in the other machine configurations.