Files
dotfiles/home/programs/himalaya.nix
uttarayan21 0cf69c3296
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s
feat(accounts): add Fastmail configuration with Himalaya support
2025-09-13 17:44:45 +05:30

14 lines
275 B
Nix

{device, ...}: {
programs.himalaya = {
enable = true;
};
accounts.email.accounts.fastmail.himalaya = {
enable = true;
settings = {
downloads-dir = "${device.home}/Mail";
backend.type = "maildir";
backend.root-dir = "~/Mail";
};
};
}