summaryrefslogtreecommitdiff
path: root/modules/services/sketchybar/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/sketchybar/default.nix')
-rw-r--r--modules/services/sketchybar/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/sketchybar/default.nix b/modules/services/sketchybar/default.nix
index 0cc4f6f..c29eec2 100644
--- a/modules/services/sketchybar/default.nix
+++ b/modules/services/sketchybar/default.nix
@@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
let
- inherit (lib) literalExpression maintainers mdDoc mkEnableOption mkIf mkPackageOptionMD mkOption optionals types;
+ inherit (lib) literalExpression maintainers mkEnableOption mkIf mkPackageOption mkOption optionals types;
cfg = config.services.sketchybar;
@@ -15,15 +15,15 @@ in
];
options.services.sketchybar = {
- enable = mkEnableOption (mdDoc "sketchybar");
+ enable = mkEnableOption "sketchybar";
- package = mkPackageOptionMD pkgs "sketchybar" { };
+ package = mkPackageOption pkgs "sketchybar" { };
extraPackages = mkOption {
type = types.listOf types.package;
default = [ ];
example = literalExpression "[ pkgs.jq ]";
- description = mdDoc ''
+ description = ''
Extra packages to add to PATH.
'';
};
@@ -36,7 +36,7 @@ in
sketchybar --update
echo "sketchybar configuration loaded.."
'';
- description = mdDoc ''
+ description = ''
Contents of sketchybar's configuration file. If empty (the default), the configuration file won't be managed.
See [documentation](https://felixkratz.github.io/SketchyBar/)