From 609a02906e76be797b7cb4562aa7a14c7a483f65 Mon Sep 17 00:00:00 2001 From: Arie Middelkoop Date: Sat, 14 Jan 2012 12:24:41 +0000 Subject: [PATCH] Another type error fix ("The example shouldn't be a string either"). svn path=/nixos/trunk/; revision=31538 --- modules/services/x11/hardware/synaptics.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/x11/hardware/synaptics.nix b/modules/services/x11/hardware/synaptics.nix index a2087f24e45..4c5161c1b30 100644 --- a/modules/services/x11/hardware/synaptics.nix +++ b/modules/services/x11/hardware/synaptics.nix @@ -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)"; };