From 2f49427e4f90b9a96da768c302f36b498b290a4d Mon Sep 17 00:00:00 2001 From: Arie Middelkoop Date: Sat, 14 Jan 2012 09:40:08 +0000 Subject: [PATCH] Fixed the default value for the palmDetect synaptics option (empty string -> false). svn path=/nixos/trunk/; revision=31529 --- modules/services/x11/hardware/synaptics.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/x11/hardware/synaptics.nix b/modules/services/x11/hardware/synaptics.nix index e8c839dc994..a2087f24e45 100644 --- a/modules/services/x11/hardware/synaptics.nix +++ b/modules/services/x11/hardware/synaptics.nix @@ -53,7 +53,7 @@ let cfg = config.services.xserver.synaptics; in }; palmDetect = mkOption { - default = ""; + default = false; example = "true"; description = "Whether to enable palm detection (hardware support required)"; };