summaryrefslogtreecommitdiff
path: root/modules/services/yabai
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/services/yabai
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/services/yabai')
-rw-r--r--modules/services/yabai/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/yabai/default.nix b/modules/services/yabai/default.nix
index a26c7ca..fe9d3f9 100644
--- a/modules/services/yabai/default.nix
+++ b/modules/services/yabai/default.nix
@@ -23,19 +23,19 @@ in
services.yabai.enable = mkOption {
type = bool;
default = false;
- description = lib.mdDoc "Whether to enable the yabai window manager.";
+ description = "Whether to enable the yabai window manager.";
};
services.yabai.package = mkOption {
type = path;
default = pkgs.yabai;
- description = lib.mdDoc "The yabai package to use.";
+ description = "The yabai package to use.";
};
services.yabai.enableScriptingAddition = mkOption {
type = bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Whether to enable yabai's scripting-addition.
SIP must be disabled for this to work.
'';
@@ -57,7 +57,7 @@ in
window_gap = 10;
}
'';
- description = lib.mdDoc ''
+ description = ''
Key/Value pairs to pass to yabai's 'config' domain, via the configuration file.
'';
};
@@ -68,7 +68,7 @@ in
example = literalExpression ''
yabai -m rule --add app='System Preferences' manage=off
'';
- description = lib.mdDoc "Extra arbitrary configuration to append to the configuration file";
+ description = "Extra arbitrary configuration to append to the configuration file";
};
};