From 4b311e74de840a8b98aadd9a2956ee66f079bcc7 Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Thu, 28 Nov 2024 09:11:01 -0300 Subject: [PATCH] operating-systems: buer: shepherd-services: Specify hours and minutes in guix-gc timer calendar-event --- operating-systems/buer/shepherd-services.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/operating-systems/buer/shepherd-services.scm b/operating-systems/buer/shepherd-services.scm index a624d10..ab5217d 100644 --- a/operating-systems/buer/shepherd-services.scm +++ b/operating-systems/buer/shepherd-services.scm @@ -27,7 +27,9 @@ next calendar event."))) (provision '(guix-gc)) (modules '((shepherd service timer))) (start #~(make-timer-constructor - (calendar-event #:days-of-month '(1 15)) + (calendar-event #:days-of-month '(1 15) + #:hours '(8 14 20) + #:minutes '(0)) (command '("guix" "gc" "--optimize" "--free-space=10G")))) (stop #~(make-timer-destructor)) (actions (list timer-trigger-action))))