nixos/home/accounts/default.nix

13 lines
223 B
Nix

{ pkgs, ... }:
{
imports = [ ./email.nix ./calendar.nix ./contact.nix ];
services = {
mbsync = {
enable = true;
postExec = "${pkgs.notmuch}/bin/notmuch new";
};
vdirsyncer.enable = true;
};
}