feat(email): enable mbsync and configure neomutt with sidebar and notmuch support
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-12-09 18:22:16 +05:30
parent 8bd6da8f75
commit c9456966bf
4 changed files with 23 additions and 8 deletions

View File

@@ -1,9 +1,20 @@
{pkgs, ...}: {
programs.neomutt = {
enable = false;
enable = true;
vimKeys = true;
editor = "nvim";
# sidebar = {
# };
sidebar = {
enable = true;
};
};
programs.notmuch = {
enable = true;
};
accounts.email.accounts.fastmail.neomutt = {
enable = true;
};
accounts.email.accounts.fastmail.notmuch = {
enable = true;
neomutt.enable = true;
};
}