nixos/home/accounts/default.nix
Evie Litherland-Smith 2ade6e92de Revert to mu/mu4e, remove notmuch
Use imapnotify to check for new mail and trigger mbsync pull +
notification for new mail

Add mailbox shortcuts to mu4e
2023-09-29 09:28:11 +01:00

14 lines
229 B
Nix

{ pkgs, ... }:
{
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
services = {
mbsync = {
enable = true;
frequency = "*:0/15";
};
imapnotify.enable = true;
vdirsyncer.enable = true;
};
}