From c7c69ec40543d5c088abf0af816aff7b738ccaa2 Mon Sep 17 00:00:00 2001 From: Albert Peschar Date: Fri, 30 Dec 2022 10:52:23 +0200 Subject: [PATCH] launchd: fix example of StartCalendarInterval --- modules/launchd/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/launchd/default.nix b/modules/launchd/default.nix index 34fefc175..3d849bef7 100644 --- a/modules/launchd/default.nix +++ b/modules/launchd/default.nix @@ -19,10 +19,12 @@ let example = literalExpression '' { ProgramArguments = [ "/usr/bin/say" "Good afternoon" ]; - StartCalendarInterval = { - Hour = 12; - Minute = 0; - }; + StartCalendarInterval = [ + { + Hour = 12; + Minute = 0; + } + ]; } ''; description = ''