Another type error fix ("The example shouldn't be a string either").
svn path=/nixos/trunk/; revision=31538
This commit is contained in:
parent
2f49427e4f
commit
609a02906e
|
@ -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)";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue