nix-config/hosts/t480/cron.nix
Oliver Davies aae4bdcda9
Some checks are pending
/ check (push) Waiting to run
Change code subdomain to git
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-11-08 13:07:10 +00:00

12 lines
282 B
Nix

{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"*/15 * * * * opdavies ${pkgs.imapfilter}/bin/imapfilter -c ~/Repos/git.oliverdavies.uk/opdavies/email-filters/config.lua"
"0 8,20 * * * opdavies ${pkgs.isync}/bin/mbsync -a"
];
};
}