summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMoritz Rumpf <moritz.rumpf@gmail.com>2024-02-28 15:02:27 +0100
committerMoritz Rumpf <moritz.rumpf@gmail.com>2024-02-29 08:45:54 +0100
commitad98aebc0f900fa9bef8dfa8f5bdb328ab93ccd3 (patch)
tree6547500fe971a16039fbec1553e5b39b80940db6 /modules
parent2ffb75f9423eb85c4ba5fa043b356f83e0586163 (diff)
Fix doc render problem
This fixes: ``` RuntimeError: can't render html in the presence of docbook ```
Diffstat (limited to 'modules')
-rw-r--r--modules/system/defaults/NSGlobalDomain.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix
index 3a18de6..03a7da2 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.
'';
};