Merge pull request #93700 from 1000101/bitcoind

nixos/bitcoind: change to multi-instance + add tests
This commit is contained in:
Marek Mahut
2020-07-27 12:55:29 +02:00
committed by GitHub
4 changed files with 201 additions and 69 deletions
@@ -539,6 +539,23 @@ systemd.services.nginx.serviceConfig.ReadWritePaths = [ "/var/www" ];
to be used for every display-manager in NixOS.
</para>
</listitem>
<listitem>
<para>
The <literal>bitcoind</literal> module has changed to multi-instance, using submodules.
Therefore, it is now mandatory to name each instance, e.g.:
<programlisting>
services.bitcoind = {
enable = true;
};
</programlisting>
requires a name now:
<programlisting>
services.bitcoind."example-mainnet" = {
enable = true;
};
</programlisting>
</para>
</listitem>
</itemizedlist>
</section>