diff options
author | EuAndreh <eu@euandre.org> | 2023-04-05 08:40:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-05 08:40:43 -0300 |
commit | 1a08101bb0a2060f29cc9025722a151795e4414e (patch) | |
tree | 4df612df0b392409a81334315091bcf31e89f56d | |
parent | bin/vcs: Use {...} over (...) (diff) | |
download | dotfiles-1a08101bb0a2060f29cc9025722a151795e4414e.tar.gz dotfiles-1a08101bb0a2060f29cc9025722a151795e4414e.tar.xz |
etc/guix/home.scm: Run GC in cronjob too
-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 |