From d6641e36c0761d6add59443acc03727a175cadbc Mon Sep 17 00:00:00 2001 From: derped Date: Thu, 28 Oct 2021 09:50:49 +0200 Subject: [PATCH] Libinput options have been renamed. --- services/desktop.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/services/desktop.nix b/services/desktop.nix index cdd7b45..cc2edbc 100644 --- a/services/desktop.nix +++ b/services/desktop.nix @@ -46,10 +46,12 @@ in mkIf (elem "desktop" cfg.services) { }; libinput = { enable = true; - tapping = true; - disableWhileTyping = false; - naturalScrolling = false; - horizontalScrolling = true; + touchpad = { + tapping = true; + disableWhileTyping = false; + naturalScrolling = false; + horizontalScrolling = true; + }; }; }; machine.pkgsets.python3.pkgs = with pkgs.gitpkgs.python38Packages; [ py3status pytz tzlocal ];