diff --git a/options.html b/options.html index 3c9defa22..8a785a0dd 100644 --- a/options.html +++ b/options.html @@ -5040,6 +5040,12 @@ this option) to command strings or directly to build outputs.

programs.offlineimap.enable

Whether to enable OfflineIMAP.

Type: boolean

Default: false

Example: true

Declared by:

<home-manager/modules/programs/offlineimap.nix> +
programs.offlineimap.package

The offlineimap package to use. Can be used to specify extensions.

Type: package

Default: pkgs.offlineimap

Example:

pkgs.offlineimap.overridePythonAttrs ( old: {
+  propagatedBuildInputs = old.propagatedBuildInputs
+    ++ (with pkgs.python3Packages; [
+      requests_oauthlib xdg gpgme]);
+})

Declared by:

+ <home-manager/modules/programs/offlineimap.nix>
programs.offlineimap.extraConfig.default

Extra configuration options added to the DEFAULT section.

Type: attribute set of (string or signed integer or boolean)

Default: { }

Example:

{
   gmailtrashfolder = "[Gmail]/Papierkorb";