summaryrefslogtreecommitdiff
path: root/modules/services/mail/offlineimap.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/mail/offlineimap.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/mail/offlineimap.nix')
-rw-r--r--modules/services/mail/offlineimap.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/services/mail/offlineimap.nix b/modules/services/mail/offlineimap.nix
index b7913cb..81c8bdb 100644
--- a/modules/services/mail/offlineimap.nix
+++ b/modules/services/mail/offlineimap.nix
@@ -7,32 +7,32 @@ let
in {
options.services.offlineimap = {
- enable = mkEnableOption (lib.mdDoc "Offlineimap, a software to dispose your mailbox(es) as a local Maildir(s)");
+ enable = mkEnableOption "Offlineimap, a software to dispose your mailbox(es) as a local Maildir(s)";
package = mkOption {
type = types.package;
default = pkgs.offlineimap;
defaultText = "pkgs.offlineimap";
- description = lib.mdDoc "Offlineimap derivation to use.";
+ description = "Offlineimap derivation to use.";
};
path = mkOption {
type = types.listOf types.path;
default = [];
example = literalExpression "[ pkgs.pass pkgs.bash pkgs.notmuch ]";
- description = lib.mdDoc "List of derivations to put in Offlineimap's path.";
+ description = "List of derivations to put in Offlineimap's path.";
};
startInterval = mkOption {
type = types.nullOr types.int;
default = 300;
- description = lib.mdDoc "Optional key to start offlineimap services each N seconds";
+ description = "Optional key to start offlineimap services each N seconds";
};
runQuick = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Run only quick synchronizations.
Ignore any flag updates on IMAP servers. If a flag on the remote IMAP changes, and we have the message locally, it will be left untouched in a quick run.
'';
@@ -41,7 +41,7 @@ in {
extraConfig = mkOption {
type = types.lines;
default = "";
- description = lib.mdDoc "Additional text to be appended to {file}`offlineimaprc`.";
+ description = "Additional text to be appended to {file}`offlineimaprc`.";
};
};