nix-config/hosts/t490/services/cron.nix
2025-05-06 20:17:29 +01:00

11 lines
153 B
Nix

{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"0 8,20 * * * opdavies ${pkgs.isync}/bin/mbsync -a"
];
};
}