From 6fa66ff7b9e5a09ac276100fc9d0d58c6a40f009 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Fri, 3 Sep 2010 19:10:45 +0000 Subject: [PATCH] Move matches just below the identifier. svn path=/nixos/trunk/; revision=23628 --- modules/services/x11/hardware/synaptics.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/x11/hardware/synaptics.nix b/modules/services/x11/hardware/synaptics.nix index a8abe87ea2be..9328dbbad6c2 100644 --- a/modules/services/x11/hardware/synaptics.nix +++ b/modules/services/x11/hardware/synaptics.nix @@ -59,10 +59,10 @@ let cfg = config.services.xserver.synaptics; in '' # Automatically enable the synaptics driver for all touchpads. Section "InputClass" - Identifier "touchpad catchall" - Driver "synaptics" + Identifier "synaptics touchpad catchall" MatchIsTouchpad "on" ${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''} + Driver "synaptics" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "MinSpeed" "${cfg.minSpeed}"