diff options
author | Aspen Smith <root@gws.fyi> | 2024-08-20T02·19-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-20T02·27+0000 |
commit | 01af37c532698fb74c9d47f49b4e3f2be69a55e9 (patch) | |
tree | 2fd965c79c104a62d0cf5a64a480f90215a0eb36 | |
parent | a4e40d1dfa0630568841bb713be14aefca867160 (diff) |
chore(aspen/system): Turn off disableWhileTyping for libinput r/8542
I... actually really hate this, it turns out. Plus it breaks video games, lol. Change-Id: I4b86e38ee78f5f3b6ffec5e7cc4f1dc054d91c56 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12256 Reviewed-by: aspen <root@gws.fyi> Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI
-rw-r--r-- | users/aspen/system/system/modules/laptop.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/users/aspen/system/system/modules/laptop.nix b/users/aspen/system/system/modules/laptop.nix index b9bf38a4f1fa..57b2bc5a45a9 100644 --- a/users/aspen/system/system/modules/laptop.nix +++ b/users/aspen/system/system/modules/laptop.nix @@ -21,10 +21,5 @@ percentageAction = 3; }; - services.libinput = { - touchpad = { - naturalScrolling = true; - disableWhileTyping = true; - }; - }; + services.libinput.touchpad.naturalScrolling = true; } |