16 lines
283 B
Nix
16 lines
283 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
|
|
services = {
|
|
mbsync = {
|
|
enable = true;
|
|
postExec = ''
|
|
${pkgs.notmuch}/bin/notmuch new
|
|
${pkgs.notifymuch}/bin/notifymuch
|
|
'';
|
|
};
|
|
vdirsyncer.enable = true;
|
|
};
|
|
}
|