summaryrefslogtreecommitdiff
path: root/modules/services/mopidy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/mopidy.nix')
-rw-r--r--modules/services/mopidy.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/services/mopidy.nix b/modules/services/mopidy.nix
index 2fb9a15..be3c05e 100644
--- a/modules/services/mopidy.nix
+++ b/modules/services/mopidy.nix
@@ -11,27 +11,27 @@ in
services.mopidy.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable the Mopidy Daemon.";
+ description = "Whether to enable the Mopidy Daemon.";
};
services.mopidy.package = mkOption {
type = types.path;
default = pkgs.mopidy;
defaultText = "pkgs.mopidy";
- description = lib.mdDoc "This option specifies the mopidy package to use.";
+ description = "This option specifies the mopidy package to use.";
};
services.mopidy.mediakeys.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable the Mopidy OSX Media Keys support daemon.";
+ description = "Whether to enable the Mopidy OSX Media Keys support daemon.";
};
services.mopidy.mediakeys.package = mkOption {
type = types.path;
default = pkgs.pythonPackages.osxmpdkeys;
defaultText = "pkgs.pythonPackages.osxmpdkeys";
- description = lib.mdDoc "This option specifies the mediakeys package to use.";
+ description = "This option specifies the mediakeys package to use.";
};
};