2009-09-10 14:37:33 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let cfg = config.services.xserver.synaptics; in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.xserver.synaptics = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-09-10 14:37:33 +02:00
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
example = true;
|
|
|
|
description = "Whether to enable touchpad support.";
|
|
|
|
};
|
|
|
|
|
|
|
|
dev = mkOption {
|
2010-08-10 16:13:57 +02:00
|
|
|
default = null;
|
2012-01-10 19:40:02 +01:00
|
|
|
example = "/dev/input/event0";
|
2011-09-14 20:20:50 +02:00
|
|
|
description =
|
2010-08-10 16:13:57 +02:00
|
|
|
''
|
|
|
|
Path for touchpad device. Set to null to apply to any
|
|
|
|
auto-detected touchpad.
|
|
|
|
'';
|
2009-09-10 14:37:33 +02:00
|
|
|
};
|
|
|
|
|
2012-06-16 13:13:48 +02:00
|
|
|
accelFactor = mkOption {
|
|
|
|
default = "0.001";
|
|
|
|
description = "Cursor acceleration (how fast speed increases from minSpeed to maxSpeed).";
|
|
|
|
};
|
|
|
|
|
2009-09-10 14:37:33 +02:00
|
|
|
minSpeed = mkOption {
|
2010-08-02 21:06:42 +02:00
|
|
|
default = "0.6";
|
2009-09-10 14:37:33 +02:00
|
|
|
description = "Cursor speed factor for precision finger motion.";
|
|
|
|
};
|
|
|
|
|
|
|
|
maxSpeed = mkOption {
|
2010-08-02 21:06:42 +02:00
|
|
|
default = "1.0";
|
2009-09-10 14:37:33 +02:00
|
|
|
description = "Cursor speed factor for highest-speed finger motion.";
|
|
|
|
};
|
|
|
|
|
|
|
|
twoFingerScroll = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable two-finger drag-scrolling.";
|
|
|
|
};
|
|
|
|
|
2010-08-02 21:06:42 +02:00
|
|
|
vertEdgeScroll = mkOption {
|
2011-08-11 00:14:46 +02:00
|
|
|
default = ! cfg.twoFingerScroll;
|
2010-08-02 21:06:42 +02:00
|
|
|
description = "Whether to enable vertical edge drag-scrolling.";
|
|
|
|
};
|
|
|
|
|
2012-01-13 23:23:18 +01:00
|
|
|
tapButtons = mkOption {
|
|
|
|
default = true;
|
2012-01-14 13:24:41 +01:00
|
|
|
example = false;
|
2012-01-13 23:23:18 +01:00
|
|
|
description = "Whether to enable tap buttons.";
|
|
|
|
};
|
|
|
|
|
|
|
|
palmDetect = mkOption {
|
2012-01-14 10:40:08 +01:00
|
|
|
default = false;
|
2012-01-14 13:24:41 +01:00
|
|
|
example = true;
|
2012-01-13 23:23:18 +01:00
|
|
|
description = "Whether to enable palm detection (hardware support required)";
|
|
|
|
};
|
|
|
|
|
2012-04-19 10:29:22 +02:00
|
|
|
horizontalScroll = mkOption {
|
|
|
|
default = true;
|
|
|
|
example = false;
|
|
|
|
description = "Whether to enable horizontal scrolling (on touchpad)";
|
|
|
|
};
|
|
|
|
|
2012-01-10 19:40:02 +01:00
|
|
|
additionalOptions = mkOption {
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
Option "RTCornerButton" "2"
|
|
|
|
Option "RBCornerButton" "3"
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Additional options for synaptics touchpad driver.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-09-10 14:37:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
|
|
|
services.xserver.modules = [ pkgs.xorg.xf86inputsynaptics ];
|
|
|
|
|
2013-05-09 15:01:16 +02:00
|
|
|
environment.systemPackages = [ pkgs.xorg.xf86inputsynaptics ];
|
|
|
|
|
2009-09-10 14:37:33 +02:00
|
|
|
services.xserver.config =
|
|
|
|
''
|
2010-08-10 16:13:57 +02:00
|
|
|
# Automatically enable the synaptics driver for all touchpads.
|
|
|
|
Section "InputClass"
|
2010-09-03 21:10:45 +02:00
|
|
|
Identifier "synaptics touchpad catchall"
|
2010-08-10 16:13:57 +02:00
|
|
|
MatchIsTouchpad "on"
|
|
|
|
${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''}
|
2010-09-03 21:10:45 +02:00
|
|
|
Driver "synaptics"
|
2009-09-10 14:37:33 +02:00
|
|
|
Option "MaxTapTime" "180"
|
|
|
|
Option "MaxTapMove" "220"
|
|
|
|
Option "MinSpeed" "${cfg.minSpeed}"
|
|
|
|
Option "MaxSpeed" "${cfg.maxSpeed}"
|
2012-06-16 13:13:48 +02:00
|
|
|
Option "AccelFactor" "${cfg.accelFactor}"
|
2012-01-13 23:23:18 +01:00
|
|
|
Option "TapButton1" "${if cfg.tapButtons then "1" else "0"}"
|
|
|
|
Option "TapButton2" "${if cfg.tapButtons then "2" else "0"}"
|
|
|
|
Option "TapButton3" "${if cfg.tapButtons then "3" else "0"}"
|
2012-04-19 10:29:22 +02:00
|
|
|
${if cfg.tapButtons then "" else ''Option "MaxTapTime" "0"''}
|
2009-09-10 14:37:33 +02:00
|
|
|
Option "VertTwoFingerScroll" "${if cfg.twoFingerScroll then "1" else "0"}"
|
|
|
|
Option "HorizTwoFingerScroll" "${if cfg.twoFingerScroll then "1" else "0"}"
|
2010-08-02 21:06:42 +02:00
|
|
|
Option "VertEdgeScroll" "${if cfg.vertEdgeScroll then "1" else "0"}"
|
2012-01-13 23:23:18 +01:00
|
|
|
${if cfg.palmDetect then ''Option "PalmDetect" "1"'' else ""}
|
2012-04-19 10:29:22 +02:00
|
|
|
${if cfg.horizontalScroll then "" else ''Option "HorizScrollDelta" "0"''}
|
2012-01-10 19:40:02 +01:00
|
|
|
${cfg.additionalOptions}
|
2009-09-10 14:37:33 +02:00
|
|
|
EndSection
|
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|