From 01af37c532698fb74c9d47f49b4e3f2be69a55e9 Mon Sep 17 00:00:00 2001 From: Aspen Smith Date: Mon, 19 Aug 2024 22:19:22 -0400 Subject: [PATCH] chore(aspen/system): Turn off disableWhileTyping for libinput 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 Autosubmit: aspen Tested-by: BuildkiteCI --- users/aspen/system/system/modules/laptop.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/users/aspen/system/system/modules/laptop.nix b/users/aspen/system/system/modules/laptop.nix index b9bf38a4f..57b2bc5a4 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; }