diff options
-rw-r--r-- | etc/guix/home.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 700e2a8..2094264 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -283,8 +283,9 @@ left it off the last time it was used.") (define cronjobs (list #~(job "0 0 * * *" "cronjob check") - #~(job "0 1 * * *" "cronjob reconfigure -U") - #~(job "0 2 * * *" "cronjob backup -q cron"))) + #~(job "0 1 * * *" "cronjob backup -q cron") + #~(job "0 2 * * 0" "cronjob gc") + #~(job "0 3 * * *" "cronjob reconfigure -U"))) (define (home-service name package bin) (service-type |