From 75f47838fa12168cc21e8943e5587a7d467c9db2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 15 Feb 2025 01:34:46 +0000 Subject: [PATCH] Change job to run every 15 minutes --- nix/hosts/t490/services/cron.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/hosts/t490/services/cron.nix b/nix/hosts/t490/services/cron.nix index 65004d5..8752ccf 100644 --- a/nix/hosts/t490/services/cron.nix +++ b/nix/hosts/t490/services/cron.nix @@ -5,7 +5,7 @@ enable = true; systemCronJobs = [ - "* * * * * opdavies ${pkgs.imapfilter}/bin/imapfilter -c ~/Code/email-filters/config.lua" + "*/15 * * * * opdavies ${pkgs.imapfilter}/bin/imapfilter -c ~/Code/email-filters/config.lua" ]; }; }