From ad98aebc0f900fa9bef8dfa8f5bdb328ab93ccd3 Mon Sep 17 00:00:00 2001 From: Moritz Rumpf Date: Wed, 28 Feb 2024 15:02:27 +0100 Subject: [PATCH] Fix doc render problem This fixes: ``` RuntimeError: can't render html in the presence of docbook ``` --- modules/system/defaults/NSGlobalDomain.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 3a18de68..03a7da21 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -228,7 +228,7 @@ in { system.defaults.NSGlobalDomain.NSWindowShouldDragOnGesture = mkOption { type = types.nullOr types.bool; default = null; - description = '' + description = lib.mdDoc '' Whether to enable moving window by holding anywhere on it like on Linux. The default is false. ''; };