nixpkgs/home/services.nix

29 lines
404 B
Nix

{
config
,ownLib
,pkgs
}:
{
dunst = import ./services/dunst.nix {
inherit config;
};
gpg-agent = import ./services/gpg-agent.nix {
inherit pkgs;
};
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 {
})