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. # Automatically enable the synaptics driver for all touchpads.
Section "InputClass" Section "InputClass"
Identifier "touchpad catchall" Identifier "synaptics touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on" MatchIsTouchpad "on"
${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''} ${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''}
Driver "synaptics"
Option "MaxTapTime" "180" Option "MaxTapTime" "180"
Option "MaxTapMove" "220" Option "MaxTapMove" "220"
Option "MinSpeed" "${cfg.minSpeed}" Option "MinSpeed" "${cfg.minSpeed}"