From e7fd76000afa7b6bab6285a49adc6471c5d38bea Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 30 Apr 2024 21:31:50 +0530 Subject: modules/stalwart-mail: remove redundant `lib.mdDoc` --- nixos/common/modules/stalwart-mail.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/common/modules/stalwart-mail.nix b/nixos/common/modules/stalwart-mail.nix index 9ef3f17..f784af5 100644 --- a/nixos/common/modules/stalwart-mail.nix +++ b/nixos/common/modules/stalwart-mail.nix @@ -28,14 +28,14 @@ let settingsDefault = recursiveUpdateList (map (path: readTOML path) cfgFiles); in { options.services.stalwart-mail = { - enable = mkEnableOption (mdDoc "the Stalwart all-in-one email server"); + enable = mkEnableOption "the Stalwart all-in-one email server"; package = mkPackageOption pkgs "stalwart-mail" { }; loadCredential = lib.mkOption { type = lib.types.listOf lib.types.str; default = []; example = [ "dkim.private:/path/to/stalwart.private" ]; - description = lib.mdDoc '' + description = '' This can be used to pass secrets to the systemd service without adding them to the nix store. See the LoadCredential section of systemd.exec manual for more information. @@ -45,7 +45,7 @@ in { settings = mkOption { inherit (configFormat) type; default = { }; - description = mdDoc '' + description = '' Configuration options for the Stalwart email server. See for available options. -- cgit v1.2.3