diff --git a/options.html b/options.html index 03c3ae1c9..79d2d3842 100644 --- a/options.html +++ b/options.html @@ -982,10 +982,12 @@ of launchd's LaunchAgents.
Type: bo <home-manager/modules/launchd/default.nix>
launchd.agents.<name>.configDefine a launchd job. See launchd.plist(5) for details.
Type: submodule
Default: { }
Example:
{
ProgramArguments = [ "/usr/bin/say" "Good afternoon" ];
- StartCalendarInterval = {
- Hour = 12;
- Minute = 0;
- };
+ StartCalendarInterval = [
+ {
+ Hour = 12;
+ Minute = 0;
+ }
+ ];
}
Declared by:
<home-manager/modules/launchd/default.nix>
|