feat(accounts): add Fastmail configuration with Himalaya support
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s

This commit is contained in:
uttarayan21
2025-09-13 17:44:45 +05:30
parent 5dbf838765
commit 0cf69c3296
7 changed files with 64 additions and 7 deletions

View File

@@ -35,6 +35,7 @@
./yt-dlp.nix
./zoxide.nix
./television.nix
./himalaya.nix
# ./goread.nix
# ./helix.nix

View File

@@ -0,0 +1,13 @@
{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";
};
};
}