File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -120,20 +120,20 @@ with lib; {
120120 influxdb = {
121121 enable = mkEnableOption ( mdDoc "Enable metrics export/push to an external InfluxDB database" ) ;
122122 endpoint = mkOption {
123- type = types . str ;
124- default = "http://127.0.0.1:8086" ;
123+ type = types . nullOr types . str ;
124+ default = null ;
125125 description = mdDoc "InfluxDB API endpoint to report metrics to." ;
126126 } ;
127127
128128 username = mkOption {
129- type = types . str ;
130- default = "geth" ;
129+ type = types . nullOr types . str ;
130+ default = null ;
131131 description = mdDoc "Username to authorize access to the database." ;
132132 } ;
133133
134134 password = mkOption {
135- type = types . str ;
136- default = "test" ;
135+ type = types . nullOr types . str ;
136+ default = null ;
137137 description = mdDoc "Password to authorize access to the database." ;
138138 } ;
139139 } ;
You can’t perform that action at this time.
0 commit comments