diff options
author | EuAndreh <eu@euandre.org> | 2022-11-24 08:39:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-24 08:39:47 -0300 |
commit | 0cf244712a1e7b0baafffa5cc341c72b682fac5d (patch) | |
tree | 3481bd843e3268b1d7efcd87bdafeae574278607 | |
parent | etc/ssh/known_hosts: Add alias to toph.wg (diff) | |
download | dotfiles-0cf244712a1e7b0baafffa5cc341c72b682fac5d.tar.gz dotfiles-0cf244712a1e7b0baafffa5cc341c72b682fac5d.tar.xz |
etc/guix/home.scm: Spli cronjobs for backup and upgrade
Ideally both last less, and don't compete with IO so much.
-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 b42ebb3..963bd8a 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -227,8 +227,8 @@ (define cronjobs (list #~(job "0 0 * * *" "cronjob check") - #~(job "30 0 * * *" "cronjob x update AND upgrade") - #~(job "30 0 * * *" "cronjob backup -q cron"))) + #~(job "30 4 * * *" "cronjob x update AND upgrade") + #~(job "30 23 * * *" "cronjob backup -q cron"))) (define (home-service name package bin) (service-type |