Hi Arie,

Commit https://nixos.org/repos/nix/nixos/trunk@31523 contained a small
mistake, leading to a crash while building:
"value is a string while a Boolean was expected"

I attached the fix, can you commit it?

Thanks,
Mathijs
diff --git a/modules/services/x11/hardware/synaptics.nix b/modules/services/x11/hardware/synaptics.nix
index e8c839d..a2087f2 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)";
       };
_______________________________________________
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev

Reply via email to