From 86eef74e9c35cb553901e8044f791c71b691115a Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sun, 10 Apr 2022 01:22:36 +0200 Subject: [PATCH] home: mail: custom mail check frequency --- home/mail.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/mail.nix b/home/mail.nix index 800ba84..f4efcfc 100644 --- a/home/mail.nix +++ b/home/mail.nix @@ -87,6 +87,9 @@ in programs.mbsync.enable = true; services.mbsync = { enable = true; + # sync every hour on the third minute, then every 16 minutes (to not hit + # servers right on plain hours) + frequency = "*:03/16"; postExec = "${pkgs.mu}/bin/mu index"; }; systemd.user.services.mbsync = {