File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ with lib; {
63
63
} ;
64
64
65
65
ws = {
66
- enable = mkEnableOption ( "Reth WebSocket API" ) ;
66
+ enable = mkEnableOption "Reth WebSocket API" ;
67
67
addr = mkOption {
68
68
type = types . nullOr types . str ;
69
69
default = null ;
@@ -114,7 +114,7 @@ with lib; {
114
114
} ;
115
115
116
116
metrics = {
117
- enable = mkEnableOption ( "Enable Prometheus metrics collection and reporting." ) ;
117
+ enable = mkEnableOption "Enable Prometheus metrics collection and reporting." ;
118
118
119
119
addr = mkOption {
120
120
type = types . str ;
Original file line number Diff line number Diff line change 7
7
8
8
rethOpts = with lib ; {
9
9
options = {
10
- enable = mkEnableOption ( "Reth Ethereum Node." ) ;
10
+ enable = mkEnableOption "Reth Ethereum Node." ;
11
11
12
- subVolume = mkEnableOption ( "Use a subvolume for the state directory if the underlying filesystem supports it e.g. btrfs" ) ;
12
+ subVolume = mkEnableOption "Use a subvolume for the state directory if the underlying filesystem supports it e.g. btrfs" ;
13
13
14
14
inherit args ;
15
15
You can’t perform that action at this time.
0 commit comments