summaryrefslogtreecommitdiff
path: root/modules/services/yabai
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/yabai
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
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";
};
};