Files
nixos-config/profiles/mbsync.nix
Christoph Schmatzler e8f1d597e3 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2026-03-01 21:01:22 +00:00

21 lines
329 B
Nix

{...}: {
programs.mbsync.enable = true;
services.mbsync = {
enable = true;
frequency = "*:0/5";
};
accounts.email.accounts."christoph@schmatzler.com" = {
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
imap = {
host = "imap.mail.me.com";
port = 993;
tls.enable = true;
};
};
}