mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
launchd: fix types for StartCalendarInterval
This commit is contained in:
parent
258cda10ce
commit
a12b9def6c
1 changed files with 5 additions and 5 deletions
|
@ -340,7 +340,7 @@ with lib;
|
|||
type = types.nullOr (types.listOf (types.submodule {
|
||||
options = {
|
||||
Minute = mkOption {
|
||||
type = types.nullOr types.integer;
|
||||
type = types.nullOr types.int;
|
||||
default = null;
|
||||
description = ''
|
||||
The minute on which this job will be run.
|
||||
|
@ -348,7 +348,7 @@ with lib;
|
|||
};
|
||||
|
||||
Hour = mkOption {
|
||||
type = types.nullOr types.integer;
|
||||
type = types.nullOr types.int;
|
||||
default = null;
|
||||
description = ''
|
||||
The hour on which this job will be run.
|
||||
|
@ -356,7 +356,7 @@ with lib;
|
|||
};
|
||||
|
||||
Day = mkOption {
|
||||
type = types.nullOr types.integer;
|
||||
type = types.nullOr types.int;
|
||||
default = null;
|
||||
description = ''
|
||||
The day on which this job will be run.
|
||||
|
@ -364,7 +364,7 @@ with lib;
|
|||
};
|
||||
|
||||
Weekday = mkOption {
|
||||
type = types.nullOr types.integer;
|
||||
type = types.nullOr types.int;
|
||||
default = null;
|
||||
description = ''
|
||||
The weekday on which this job will be run (0 and 7 are Sunday).
|
||||
|
@ -372,7 +372,7 @@ with lib;
|
|||
};
|
||||
|
||||
Month = mkOption {
|
||||
type = types.nullOr types.integer;
|
||||
type = types.nullOr types.int;
|
||||
default = null;
|
||||
description = ''
|
||||
The month on which this job will be run.
|
||||
|
|
Loading…
Reference in a new issue