1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02: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 ''
{
ProgramArguments = [ "/usr/bin/say" "Good afternoon" ];
StartCalendarInterval = {
Hour = 12;
Minute = 0;
};
StartCalendarInterval = [
{
Hour = 12;
Minute = 0;
}
];
}
'';
description = ''