synaptics: add types to options

This commit is contained in:
Nikolay Amiantov 2014-10-31 12:38:58 +03:00
parent d5570b082d
commit 0eb86647b3

View File

@ -25,12 +25,14 @@ in {
services.xserver.synaptics = { services.xserver.synaptics = {
enable = mkOption { enable = mkOption {
type = types.bool;
default = false; default = false;
example = true; example = true;
description = "Whether to enable touchpad support."; description = "Whether to enable touchpad support.";
}; };
dev = mkOption { dev = mkOption {
type = types.nullOr types.str;
default = null; default = null;
example = "/dev/input/event0"; example = "/dev/input/event0";
description = description =
@ -59,22 +61,26 @@ in {
}; };
twoFingerScroll = mkOption { twoFingerScroll = mkOption {
type = types.bool;
default = false; default = false;
description = "Whether to enable two-finger drag-scrolling."; description = "Whether to enable two-finger drag-scrolling.";
}; };
vertEdgeScroll = mkOption { vertEdgeScroll = mkOption {
type = types.bool;
default = ! cfg.twoFingerScroll; default = ! cfg.twoFingerScroll;
description = "Whether to enable vertical edge drag-scrolling."; description = "Whether to enable vertical edge drag-scrolling.";
}; };
tapButtons = mkOption { tapButtons = mkOption {
type = types.bool;
default = true; default = true;
example = false; example = false;
description = "Whether to enable tap buttons."; description = "Whether to enable tap buttons.";
}; };
buttonsMap = mkOption { buttonsMap = mkOption {
type = types.listOf types.int;
default = [1 2 3]; default = [1 2 3];
example = [1 3 2]; example = [1 3 2];
description = "Remap touchpad buttons."; description = "Remap touchpad buttons.";
@ -82,18 +88,21 @@ in {
}; };
palmDetect = mkOption { palmDetect = mkOption {
type = types.bool;
default = false; default = false;
example = true; example = true;
description = "Whether to enable palm detection (hardware support required)"; description = "Whether to enable palm detection (hardware support required)";
}; };
horizontalScroll = mkOption { horizontalScroll = mkOption {
type = types.bool;
default = true; default = true;
example = false; example = false;
description = "Whether to enable horizontal scrolling (on touchpad)"; description = "Whether to enable horizontal scrolling (on touchpad)";
}; };
additionalOptions = mkOption { additionalOptions = mkOption {
type = types.str;
default = ""; default = "";
example = '' example = ''
Option "RTCornerButton" "2" Option "RTCornerButton" "2"