about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2024-08-03T19·09-0400
committerclbot <clbot@tvl.fyi>2024-08-03T19·50+0000
commit66c75ef69422a171a7b7cac1bec965a41d65ec78 (patch)
treec141973aba121a3d8c77559ab7292a06767c7942
parentaf61d6420955ad2c4e8a03df0afbcfb9b8ed908d (diff)
feat(aspen/system): Tweak trackpad settings on laptops r/8439
Change-Id: Ie04c97b9b043bdfd8d2d20138d5bc795f340e8b7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12126
Tested-by: BuildkiteCI
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: aspen <root@gws.fyi>
-rw-r--r--users/aspen/system/system/modules/laptop.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/users/aspen/system/system/modules/laptop.nix b/users/aspen/system/system/modules/laptop.nix
index 89c880973d80..b9bf38a4f1fa 100644
--- a/users/aspen/system/system/modules/laptop.nix
+++ b/users/aspen/system/system/modules/laptop.nix
@@ -20,4 +20,11 @@
     criticalPowerAction = "Hibernate";
     percentageAction = 3;
   };
+
+  services.libinput = {
+    touchpad = {
+      naturalScrolling = true;
+      disableWhileTyping = true;
+    };
+  };
 }