mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
bf6b85136b
At the moment, only the inbox of each mail account is added to neomutt. This inbox is always called "Inbox", so if you configure multiple accounts, it is hard to know which one is which. This change allows the user to specify a display name per account that uses `named-mailboxes` under the hood. Additionally this change now allows to add other folders than the inbox, for example the Trash, Spam or Drafts folders to be added on a per-account basis. Using extraOptions is not possible here, as those are lazily loaded on mailbox open and thus would appear at the bottom and not sorted by account. This commit also changes the default sidebar format string to use %D instead of %B because %B will ignore named mailboxes and show the folder name instead.
12 lines
524 B
Nix
12 lines
524 B
Nix
{
|
|
neomutt-simple = ./neomutt.nix;
|
|
neomutt-with-msmtp = ./neomutt-with-msmtp.nix;
|
|
neomutt-not-primary = ./neomutt-not-primary.nix;
|
|
neomutt-with-binds = ./neomutt-with-binds.nix;
|
|
neomutt-with-binds-with-warning = ./neomutt-with-binds-with-warning.nix;
|
|
neomutt-with-binds-invalid-settings =
|
|
./neomutt-with-binds-invalid-settings.nix;
|
|
neomutt-with-gpg = ./neomutt-with-gpg.nix;
|
|
neomutt-no-folder-change = ./neomutt-no-folder-change.nix;
|
|
neomutt-with-named-mailboxes = ./neomutt-with-named-mailboxes.nix;
|
|
}
|