Another type error fix ("The example shouldn't be a string either").

svn path=/nixos/trunk/; revision=31538
This commit is contained in:
Arie Middelkoop 2012-01-14 12:24:41 +00:00
parent 2f49427e4f
commit 609a02906e
1 changed files with 2 additions and 2 deletions

View File

@ -48,13 +48,13 @@ let cfg = config.services.xserver.synaptics; in
tapButtons = mkOption {
default = true;
example = "false";
example = false;
description = "Whether to enable tap buttons.";
};
palmDetect = mkOption {
default = false;
example = "true";
example = true;
description = "Whether to enable palm detection (hardware support required)";
};