bitcoind: set default rpcuser

We're already setting a default rpcpassword, so we should set an
accompanying rpcuser so that rpc clients like electrs work out of the box.
This commit is contained in:
Erik Arvstedt 2020-03-04 18:09:04 +01:00
parent c4cf323873
commit 5596bcf4fb
No known key found for this signature in database
GPG key ID: 33312B944DD97846
2 changed files with 1 additions and 2 deletions

View file

@ -135,7 +135,7 @@ in {
rpcuser = mkOption {
type = types.nullOr types.str;
default = null;
default = "bitcoinrpc";
description = "Username for JSON-RPC connections";
};
rpcpassword = mkOption {