File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 143143 type = lib . types . listOf lib . types . singleLineStr ;
144144 default = [ ] ;
145145 } ;
146+ fodChecker = lib . mkOption {
147+ description = "Reloadable settings for queue runner" ;
148+ type = lib . types . submodule {
149+ options = {
150+ enable = lib . mkOption {
151+ description = "Enable FOD Checker" ;
152+ type = lib . types . bool ;
153+ default = false ;
154+ } ;
155+ secondsBetweenFodChecks = lib . mkOption {
156+ description = "Time in seconds between FOD Checker" ;
157+ type = lib . types . int ;
158+ default = 60 * 60 * 24 * 7 ;
159+ } ;
160+ uploadRealisations = lib . mkOption {
161+ description = "Upload realisations outputs of FOD Checker to remote store." ;
162+ type = lib . types . bool ;
163+ default = false ;
164+ } ;
165+ } ;
166+ } ;
167+ } ;
146168 } ;
147169 } ;
148170 default = { } ;
You can’t perform that action at this time.
0 commit comments