diff options
-rw-r--r-- | src/infrastructure/guix/system.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index c421bd1..6e8b1ac 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -28,6 +28,7 @@ (use-service-modules certbot cgit + mcron messaging networking ssh @@ -1720,6 +1721,12 @@ (service ntp-service-type) (service shadow-group-service-type) (service nanolist-service-type) + (service mcron-service-type + (mcron-configuration + (jobs + (list + #~(job "0 1 * * *" "cronjob backup -q cron") + #~(job "0 2 * * *" "cronjob reconfigure -U"))))) (service dkimproxyout-service-type (dkimproxyout-configuration (domains (list tld)))) |