treewide: remove usage of 'mdDoc'

This commit is contained in:
Felix Buehler 2024-12-30 12:01:57 +01:00
parent e38838e7c3
commit 95b21fdcbe
11 changed files with 31 additions and 31 deletions

View file

@ -6,12 +6,12 @@ let
in
{
options.my.services.photos = {
enable = lib.mkEnableOption (lib.mdDoc "Photos gallery");
enable = lib.mkEnableOption "Photos gallery";
secretsFile = lib.mkOption {
type = lib.types.nullOr lib.types.path;
default = null;
description = lib.mdDoc ''
description = ''
pass secrets
'';
};
@ -19,7 +19,7 @@ in
port = lib.mkOption {
type = lib.types.port;
default = 2283;
description = lib.mdDoc ''
description = ''
Web interface port.
'';
};
@ -36,7 +36,7 @@ in
type = lib.types.path;
default = null;
example = "/data/photos";
description = lib.mdDoc ''
description = ''
Storage path of your original media files (photos and videos)
'';
};