Evie Litherland-Smith
2ade6e92de
Use imapnotify to check for new mail and trigger mbsync pull + notification for new mail Add mailbox shortcuts to mu4e
14 lines
229 B
Nix
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;
|
|
};
|
|
}
|