diff --git a/options.xhtml b/options.xhtml index c99737ce5..1a248f231 100644 --- a/options.xhtml +++ b/options.xhtml @@ -2309,6 +2309,11 @@ attribute set of (submodule)

+ +<home-manager/modules/programs/meli.nix> + + + <home-manager/modules/programs/mbsync.nix> @@ -4801,6 +4806,105 @@ one of “Verbatim”, “Maildir++”, “Legacy”

+
+ + accounts.email.accounts.<name>.meli.enable + + +
+
+

Whether to enable the meli mail client for this account. +Requires SMTP settings…

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + accounts.email.accounts.<name>.meli.mailboxAliases + + +
+
+

Folder display name

+ +

Type: +attribute set of (attribute set)

+ +

Default: +{ }

+ +

Example:

{
+  INBOX = {
+    alias = "📥 Inbox";
+  };
+  Sent = {
+    alias = "📤 Sent";
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + accounts.email.accounts.<name>.meli.mailboxes + + +
+
+

Mailboxes to show in meli

+ +

Type: +list of string

+ +

Default:

[
+  "Inbox"
+  "Sent"
+  "Trash"
+  "Drafts"
+]
+
+ +

Example:

[
+  "INBOX"
+  "Sent"
+  "Trash"
+  "Drafts"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
accounts.email.accounts.<name>.msmtp.enable @@ -41367,6 +41471,257 @@ TOML value

+
+ + programs.meli.enable + + +
+
+

Whether to enable meli email client.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

meli package to use

+ +

Type: +package

+ +

Default: +<derivation meli-0.8.12>

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings + + +
+
+

Meli Configuration

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts + + +
+
+

Shortcut Settings

+ +

Type: +submodule

+ +

Default: +{ }

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts.composing + + +
+
+

composing shortcut configuration

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  edit = "m";
+  scroll_down = "n";
+  scroll_up = "e";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts.contact-list + + +
+
+

contact-list shortcut configuration

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  create_contact = "c";
+  edit_contact = "m";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts.general + + +
+
+

general shortcut configuration

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  next_page = "C-d";
+  scroll_down = "n";
+  scroll_up = "e";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts.listing + + +
+
+

general shortcut configuration

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  new_mail = "t";
+  set_seen = "s";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
+
+ + programs.meli.settings.shortcuts.pager + + +
+
+

general shortcut configuration

+ +

Type: +attribute set of string

+ +

Default: +{ }

+ +

Example:

{
+  scroll_down = "n";
+  scroll_up = "e";
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/meli.nix> + +
+
programs.mercurial.enable