mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 03:09:47 +01:00
launchd: fix example of StartCalendarInterval
This commit is contained in:
parent
5e889b385c
commit
c7c69ec405
1 changed files with 6 additions and 4 deletions
|
@ -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;
|
Hour = 12;
|
||||||
Minute = 0;
|
Minute = 0;
|
||||||
};
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue