mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Fix type error
``` error: A definition for option `launchd.user.agents.[...].serviceConfig.StartCalendarInterval' is not of type `null or (list of (submodule))'. Definition values: - In `<unknown-file>': { Hour = 0; Minute = 0; } ```
This commit is contained in:
parent
0a3afdc600
commit
59bef44059
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ with lib;
|
|||
|
||||
StartCalendarInterval = mkOption {
|
||||
default = null;
|
||||
example = { Hour = 2; Minute = 30; };
|
||||
example = [{ Hour = 2; Minute = 30; }];
|
||||
description = lib.mdDoc ''
|
||||
This optional key causes the job to be started every calendar interval as specified. Missing arguments
|
||||
are considered to be wildcard. The semantics are much like `crontab(5)`. Unlike cron which skips job
|
||||
|
|
Loading…
Reference in a new issue