diff options
author | EuAndreh <eu@euandre.org> | 2022-08-15 14:50:40 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-08-15 14:50:40 -0300 |
commit | ecaea63648d24bdbb8aced014f7b9a7409368daf (patch) | |
tree | 4e6b75ea205b4ea287e68d30b78dcb8b5f241e8c /etc | |
parent | etc/guix/home.scm: Use -q quiet flag in backup cron (diff) | |
download | dotfiles-ecaea63648d24bdbb8aced014f7b9a7409368daf.tar.gz dotfiles-ecaea63648d24bdbb8aced014f7b9a7409368daf.tar.xz |
etc/guix/home.scm: Decrease frequency of "check" and "msmtp-queue" cronjobs
Diffstat (limited to 'etc')
-rw-r--r-- | etc/guix/home.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 61ff14e..549ccf5 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -187,8 +187,8 @@ (define cronjobs (list - #~(job "0 * * * *" "cronjob msmtp-queue -r") - #~(job "0 */6 * * *" "cronjob check") + #~(job "0 0 * * *" "cronjob msmtp-queue -r") + #~(job "0 0 * * *" "cronjob check") #~(job "5 */6 * * *" "cronjob m") #~(job "30 1 * * *" "cronjob backup -q cron"))) |