1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-01-11 19:49:49 +01:00

launchd: fix example of StartCalendarInterval

This commit is contained in:
Albert Peschar 2022-12-30 10:52:23 +02:00 committed by Robert Helgesson
parent 5e889b385c
commit c7c69ec405
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -19,10 +19,12 @@ let
example = literalExpression '' example = literalExpression ''
{ {
ProgramArguments = [ "/usr/bin/say" "Good afternoon" ]; ProgramArguments = [ "/usr/bin/say" "Good afternoon" ];
StartCalendarInterval = { StartCalendarInterval = [
Hour = 12; {
Minute = 0; Hour = 12;
}; Minute = 0;
}
];
} }
''; '';
description = '' description = ''