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,13 +1,13 @@
{device, ...}: {
{config, ...}: {
programs.himalaya = {
enable = true;
};
accounts.email.accounts.fastmail.himalaya = {
enable = true;
settings = {
downloads-dir = "${device.home}/Mail";
downloads-dir = "${config.home.homeDirectory}/Mail/fastmail";
backend.type = "maildir";
backend.root-dir = "~/Mail";
backend.root-dir = "${config.home.homeDirectory}/Mail/fastmail";
};
};
}