summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-04-30 21:31:50 +0530
committersinanmohd <sinan@sinanmohd.com>2024-04-30 21:31:50 +0530
commite7fd76000afa7b6bab6285a49adc6471c5d38bea (patch)
tree97e03b1ec18ee278acd4567bd63988ebc21c1da8
parent3fc51de5171feb362b8373273c3e82de2a70e076 (diff)
modules/stalwart-mail: remove redundant `lib.mdDoc`
-rw-r--r--nixos/common/modules/stalwart-mail.nix6
1 files 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 <https://stalw.art/docs/category/configuration> for available options.