Fixed the default value for the palmDetect synaptics option (empty string -> false).
svn path=/nixos/trunk/; revision=31529
This commit is contained in:
parent
4d26262878
commit
2f49427e4f
|
@ -53,7 +53,7 @@ let cfg = config.services.xserver.synaptics; in
|
||||||
};
|
};
|
||||||
|
|
||||||
palmDetect = mkOption {
|
palmDetect = mkOption {
|
||||||
default = "";
|
default = false;
|
||||||
example = "true";
|
example = "true";
|
||||||
description = "Whether to enable palm detection (hardware support required)";
|
description = "Whether to enable palm detection (hardware support required)";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue