Move matches just below the identifier.

svn path=/nixos/trunk/; revision=23628
This commit is contained in:
Nicolas Pierron 2010-09-03 19:10:45 +00:00
parent f1a6a8b6e0
commit 6fa66ff7b9

View file

@ -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}"