1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-16 05:18:17 +00:00

launchd: fix types for StartCalendarInterval

This commit is contained in:
Daiderd Jordan 2017-03-05 20:36:50 +01:00
parent 258cda10ce
commit a12b9def6c

View file

@ -340,7 +340,7 @@ with lib;
type = types.nullOr (types.listOf (types.submodule { type = types.nullOr (types.listOf (types.submodule {
options = { options = {
Minute = mkOption { Minute = mkOption {
type = types.nullOr types.integer; type = types.nullOr types.int;
default = null; default = null;
description = '' description = ''
The minute on which this job will be run. The minute on which this job will be run.
@ -348,7 +348,7 @@ with lib;
}; };
Hour = mkOption { Hour = mkOption {
type = types.nullOr types.integer; type = types.nullOr types.int;
default = null; default = null;
description = '' description = ''
The hour on which this job will be run. The hour on which this job will be run.
@ -356,7 +356,7 @@ with lib;
}; };
Day = mkOption { Day = mkOption {
type = types.nullOr types.integer; type = types.nullOr types.int;
default = null; default = null;
description = '' description = ''
The day on which this job will be run. The day on which this job will be run.
@ -364,7 +364,7 @@ with lib;
}; };
Weekday = mkOption { Weekday = mkOption {
type = types.nullOr types.integer; type = types.nullOr types.int;
default = null; default = null;
description = '' description = ''
The weekday on which this job will be run (0 and 7 are Sunday). The weekday on which this job will be run (0 and 7 are Sunday).
@ -372,7 +372,7 @@ with lib;
}; };
Month = mkOption { Month = mkOption {
type = types.nullOr types.integer; type = types.nullOr types.int;
default = null; default = null;
description = '' description = ''
The month on which this job will be run. The month on which this job will be run.