nixpkgs/home/services.nix
Daniel Siepmann 0f6e71321e
migrate vdirsync + khal
Home-Manager got first level support for calendars and contacts.
Provided integrations are vdirsync and khal which I'm already using.
I therefore migrate from my own setup to the upstream setup.

Issue on home-manager project:
https://github.com/nix-community/home-manager/issues/2335
2023-06-13 16:16:19 +02:00

24 lines
374 B
Nix

{ config, ownLib }:
{
dunst = import ./services/dunst.nix {
inherit config;
};
gpg-agent = import ./services/gpg-agent.nix {
};
vdirsyncer = {
enable = true;
frequency = "Mon..Thu *-*-* 15,12,8:00";
};
languagetool.enable = true;
mailhog.enable = true;
} // (if ownLib.onHikari {} then {
network-manager-applet.enable = true;
} else {
})