Files
dotfiles/home/programs/neomutt.nix
uttarayan21 c9456966bf
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(email): enable mbsync and configure neomutt with sidebar and notmuch support
2025-12-09 18:22:16 +05:30

21 lines
365 B
Nix

{pkgs, ...}: {
programs.neomutt = {
enable = true;
vimKeys = true;
editor = "nvim";
sidebar = {
enable = true;
};
};
programs.notmuch = {
enable = true;
};
accounts.email.accounts.fastmail.neomutt = {
enable = true;
};
accounts.email.accounts.fastmail.notmuch = {
enable = true;
neomutt.enable = true;
};
}