diff --git a/features/desktopish/touchpad-trackpoint.nix b/features/desktopish/touchpad-trackpoint.nix index 6165d09..62402ca 100644 --- a/features/desktopish/touchpad-trackpoint.nix +++ b/features/desktopish/touchpad-trackpoint.nix @@ -1,10 +1,14 @@ { config, pkgs, ... }: { + # NOTE: libinput changes require a reboot services.xserver.libinput = { enable = true; - # macOS like behaviour + + # macOS like scrolling + mouse.naturalScrolling = true; touchpad.naturalScrolling = true; + # Tap to click touchpad.tapping = true; };