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

@ -8,18 +8,18 @@ in
enable = mkEnableOption "enable matrix forwarding bot";
Username = mkOption {
type = types.str;
description = lib.mdDoc "Matrix bot name.";
description = "Matrix bot name.";
example = "@bot:matrix.org";
default = "@stunkymonkey-bot:matrix.org";
};
PasswortFile = mkOption {
type = types.path;
description = lib.mdDoc "Password for the bot.";
description = "Password for the bot.";
example = "/run/secrets/password";
};
RoomID = mkOption {
type = types.str;
description = lib.mdDoc "Matrix room id.";
description = "Matrix room id.";
example = "!abcdefghijklmnopqr:matrix.org";
default = "!ZWnKiKLuQNBkBGMPCl:matrix.org";
};