Hello.
guix system --version
guix system (GNU Guix) c3bda394a44ceed39c5ac2f1d07502a3a7502da5
Ver. 1
___________________________________________________________________________
(use-modules
...
(gnu services mcron) ;; ← manual
...
(define fstrim-job ;; ← manual
#~(job "10 10 * * 6"
"fstrim -a"))
...
(services (cons*
...
(mcron-service-type (mcron-configuration (jobs (list fstrim-job)))) ;; ← but here the question
...
root@guix ~# guix system -n reconfigure /home/jone/sys.cfg/system-config.scm
guix system: error: failed to load '/home/jone/sys.cfg/system-config.scm':
/home/jone/sys.cfg/system-config.scm:123:25: /home/jone/sys.cfg/system-config.scm:123:25: Wrong type to apply: #<service-type mcron 227d4b0>
Ver.2