We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea8db7 commit 41fa0d2Copy full SHA for 41fa0d2
modules/geth/args.nix
@@ -174,6 +174,12 @@ with lib; {
174
description = "Maximum peers to connect to.";
175
};
176
177
+ user = mkOption {
178
+ type = types.nullOr types.str;
179
+ default = null;
180
+ description = "User to run the service as.";
181
+ };
182
+
183
datadir = mkOption {
184
type = types.nullOr types.str;
185
default = null;
modules/geth/options.nix
@@ -9,12 +9,6 @@
9
options = rec {
10
enable = mkEnableOption "Go Ethereum Node";
11
12
- user = mkOption {
13
- type = types.nullOr types.str;
14
- default = null;
15
- description = "User to run the service as.";
16
- };
17
-
18
inherit args;
19
20
extraArgs = mkOption {
0 commit comments