From 73db0c090654ed3a5cb4d7816dff7b5693fd4416 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 22 Jun 2024 12:10:29 +0100 Subject: [PATCH] Set Northstar touchpad to natural scroll mode Needs to be done per device (currently) as libinput devices have a unique ID, hopefully can set as a general setting in the future --- home/Northstar.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/Northstar.nix b/home/Northstar.nix index 68d2dab..3393008 100644 --- a/home/Northstar.nix +++ b/home/Northstar.nix @@ -1 +1,4 @@ -{...}: {imports = [./default.nix];} +{...}: { + imports = [./default.nix]; + programs.plasma.configFile.kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true; +}