From 9b7977e5d582b47a9466a7b71d12bc85f63ef0a1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 11 Jul 2023 20:39:24 +0200 Subject: [PATCH] base: enable natural scrolling for touchpad --- base/gui-programs.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/base/gui-programs.nix b/base/gui-programs.nix index a44d527..5d7b8f7 100644 --- a/base/gui-programs.nix +++ b/base/gui-programs.nix @@ -37,7 +37,12 @@ in { windowManager.i3.enable = true; layout = "fr"; xkbVariant = "us"; - libinput.enable = true; + libinput = { + enable = true; + touchpad = { + naturalScrolling = true; + }; + }; }; logind.lidSwitch = "ignore";