aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-08-15 14:50:40 -0300
committerEuAndreh <eu@euandre.org>2022-08-15 14:50:40 -0300
commitecaea63648d24bdbb8aced014f7b9a7409368daf (patch)
tree4e6b75ea205b4ea287e68d30b78dcb8b5f241e8c
parentetc/guix/home.scm: Use -q quiet flag in backup cron (diff)
downloaddotfiles-ecaea63648d24bdbb8aced014f7b9a7409368daf.tar.gz
dotfiles-ecaea63648d24bdbb8aced014f7b9a7409368daf.tar.xz
etc/guix/home.scm: Decrease frequency of "check" and "msmtp-queue" cronjobs
-rw-r--r--etc/guix/home.scm4
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")))