rippled: added comment on commented out config options
This commit is contained in:
parent
6c77690b28
commit
def448f127
@ -18,18 +18,6 @@ let
|
|||||||
/var/log/rippled/debug.log
|
/var/log/rippled/debug.log
|
||||||
|
|
||||||
''
|
''
|
||||||
/*
|
|
||||||
+ optionalString (cfg.ips != null) ''
|
|
||||||
[ips]
|
|
||||||
${concatStringsSep "\n" cfg.ips}
|
|
||||||
|
|
||||||
''
|
|
||||||
+ optionalString (cfg.ipsFixed != null) ''
|
|
||||||
[ips_fixed]
|
|
||||||
${concatStringsSep "\n" cfg.ipsFixed}
|
|
||||||
|
|
||||||
''
|
|
||||||
*/
|
|
||||||
+ optionalString (cfg.peerIp != null) ''
|
+ optionalString (cfg.peerIp != null) ''
|
||||||
[peer_ip]
|
[peer_ip]
|
||||||
${cfg.peerIp}
|
${cfg.peerIp}
|
||||||
@ -57,6 +45,16 @@ in
|
|||||||
description = "Whether to enable rippled";
|
description = "Whether to enable rippled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#
|
||||||
|
# Rippled has a simple configuration file layout that is easy to
|
||||||
|
# build with nix. Many of the options are defined here but are
|
||||||
|
# commented out until the code to append them to the config above
|
||||||
|
# is written and they are tested.
|
||||||
|
#
|
||||||
|
# If you find a yourself implementing more options, please submit a
|
||||||
|
# pull request.
|
||||||
|
#
|
||||||
|
|
||||||
/*
|
/*
|
||||||
ips = mkOption {
|
ips = mkOption {
|
||||||
default = [ "r.ripple.com 51235" ];
|
default = [ "r.ripple.com 51235" ];
|
||||||
@ -286,16 +284,6 @@ in
|
|||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
environment = {
|
|
||||||
etc = singleton
|
|
||||||
{ source = rippledStateCfgFile;
|
|
||||||
target = "rippled";
|
|
||||||
};
|
|
||||||
|
|
||||||
# users can attempt to send RPC commands to the server.
|
|
||||||
systemPackages = [ pkgs.rippled ];
|
|
||||||
};
|
|
||||||
|
|
||||||
users.extraUsers = singleton
|
users.extraUsers = singleton
|
||||||
{ name = "rippled";
|
{ name = "rippled";
|
||||||
description = "Ripple server user";
|
description = "Ripple server user";
|
||||||
|
Loading…
Reference in New Issue
Block a user