Adjust timing of mbsync and vdirsyncer

Sync every 30 minutes, instead of every 5
This commit is contained in:
Evie Litherland-Smith 2024-10-13 13:27:40 +01:00
parent 8b1b37344d
commit c5081cdb89
2 changed files with 5 additions and 2 deletions

View file

@ -16,7 +16,10 @@
};
};
};
services.vdirsyncer.enable = true;
services.vdirsyncer = {
inherit (config.programs.vdirsyncer) enable package;
frequency = "*:0/30"; # Every 30 minutes
};
accounts.calendar = {
basePath = "Calendar";
accounts = {

View file

@ -152,7 +152,7 @@
};
services.mbsync = {
inherit (config.programs.mbsync) enable package;
frequency = "*:0/5"; # Every 5 minutes
frequency = "*:0/30"; # Every 30 minutes
verbose = true;
preExec = null;
postExec = null;