2023-09-28 15:33:41 +01:00
|
|
|
{ pkgs, ... }:
|
2023-09-25 13:42:13 +01:00
|
|
|
|
|
|
|
{
|
2023-09-25 14:22:51 +01:00
|
|
|
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
|
2023-09-26 09:41:03 +01:00
|
|
|
services = {
|
2023-09-28 15:33:41 +01:00
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
2023-09-29 08:11:32 +01:00
|
|
|
postExec = ''
|
|
|
|
${pkgs.notmuch}/bin/notmuch new
|
|
|
|
${pkgs.notifymuch}/bin/notifymuch
|
|
|
|
'';
|
2023-09-28 15:33:41 +01:00
|
|
|
};
|
2023-09-26 09:41:03 +01:00
|
|
|
vdirsyncer.enable = true;
|
|
|
|
};
|
2023-09-25 13:42:13 +01:00
|
|
|
}
|