about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-01 11:33:35 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-01 11:33:35 +0200
commit33e5cca90fd017ebb924369505be7c63882323f9 (patch)
tree5a9cdc1a63c93846c8796a983e71a73c69dc2963 /hosts
parentVSCode: Add haskell extensions (diff)
downloadnixos-config-33e5cca90fd017ebb924369505be7c63882323f9.tar.gz
nixos-config-33e5cca90fd017ebb924369505be7c63882323f9.tar.bz2
nixos-config-33e5cca90fd017ebb924369505be7c63882323f9.zip
Add twoFingerScroll to synaptics
Diffstat (limited to 'hosts')
-rw-r--r--hosts/luna/hardware.nix5
-rw-r--r--hosts/phobos/hardware.nix5
2 files changed, 8 insertions, 2 deletions
diff --git a/hosts/luna/hardware.nix b/hosts/luna/hardware.nix
index e99b98e..43ca95c 100644
--- a/hosts/luna/hardware.nix
+++ b/hosts/luna/hardware.nix
@@ -47,7 +47,10 @@ in
       videoDrivers = [ "intel" ];
 
       # Enable touchpad support (enabled default in most desktopManager).
-      synaptics.enable = true;
+      synaptics = {
+        enable = true;
+        twoFingerScroll = true;
+      };
     };
     fstrim.enable = true;
     tlp.enable = true;
diff --git a/hosts/phobos/hardware.nix b/hosts/phobos/hardware.nix
index 3e316f4..d42be43 100644
--- a/hosts/phobos/hardware.nix
+++ b/hosts/phobos/hardware.nix
@@ -47,7 +47,10 @@ in
       videoDrivers = [ "nvidia" ];
 
       # Enable touchpad support (enabled default in most desktopManager).
-      synaptics.enable = true;
+      synaptics = {
+        enable = true;
+        twoFingerScroll = true;
+      };
     };
   };