Refactor
All checks were successful
/ check (push) Successful in 1m39s

This commit is contained in:
Oliver Davies 2025-07-02 22:16:32 +01:00
parent 25843c658d
commit 8732ff783d
9 changed files with 18 additions and 29 deletions

12
hosts/t480/cron.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.cron = {
enable = true;
systemCronJobs = [
"*/15 * * * * opdavies ${pkgs.imapfilter}/bin/imapfilter -c ~/Code/personal/email-filters/config.lua"
"0 8,20 * * * opdavies ${pkgs.isync}/bin/mbsync -a"
];
};
}