diff options
author | Aspen Smith <root@gws.fyi> | 2024-08-03T19·09-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-03T19·50+0000 |
commit | 66c75ef69422a171a7b7cac1bec965a41d65ec78 (patch) | |
tree | c141973aba121a3d8c77559ab7292a06767c7942 /users/aspen | |
parent | af61d6420955ad2c4e8a03df0afbcfb9b8ed908d (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>
Diffstat (limited to 'users/aspen')
-rw-r--r-- | users/aspen/system/system/modules/laptop.nix | 7 |
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; + }; + }; } |