improve comments

The comment in python-packackges was obsolete.
This commit is contained in:
Erik Arvstedt 2023-01-20 13:45:09 +01:00
parent 5634f08873
commit 2af642f56a
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
4 changed files with 6 additions and 5 deletions

View File

@ -55,7 +55,7 @@ The [nix-bitcoin test suite](../test/README.md) is also useful for exploring fea
### Real-world example ### Real-world example
Check the [server repo](https://github.com/fort-nix/nixbitcoin.org) for https://nixbitcoin.org Check the [server repo](https://github.com/fort-nix/nixbitcoin.org) for https://nixbitcoin.org
to see the configuration of a nix-bitcoin node that's used in production. to see the configuration of a Flakes-based nix-bitcoin node that's used in production.
The commands in `shell.nix` allow you to locally run the node in a VM or container. The commands in `shell.nix` allow you to locally run the node in a VM or container.

View File

@ -17,8 +17,8 @@ let cfg = config.services.clightning.plugins.clboss; in
default = 30000; default = 30000;
description = mdDoc '' description = mdDoc ''
Target amount (in satoshi) that CLBOSS will leave on-chain. Target amount (in satoshi) that CLBOSS will leave on-chain.
clboss will only open new channels if this amount is smaller than clboss will only open new channels if the funds in your clightning wallet are
the funds in your clightning wallet. larger than this amount.
''; '';
}; };
min-channel = mkOption { min-channel = mkOption {

View File

@ -5,7 +5,9 @@ let
secretsDir = config.nix-bitcoin.secretsDir; secretsDir = config.nix-bitcoin.secretsDir;
in { in {
services.bitcoind = { services.bitcoind = {
# Make the local bitcoin-cli work with the remote node # Make the local bitcoin-cli work with the remote node.
# Without this, bitcoin-cli would try to use the .cookie file in the local
# bitcoind data dir for authorization, which doesn't exist.
extraConfig = '' extraConfig = ''
rpcuser=${cfg.rpc.users.privileged.name} rpcuser=${cfg.rpc.users.privileged.name}
''; '';

View File

@ -39,7 +39,6 @@ rec {
## Specific versions of packages that already exist in nixpkgs ## Specific versions of packages that already exist in nixpkgs
# cryptography 3.3.2, required by joinmarketdaemon # cryptography 3.3.2, required by joinmarketdaemon
# Used in the private python package set for joinmarket (../joinmarket/default.nix)
cryptography = callPackage ./specific-versions/cryptography { cryptography = callPackage ./specific-versions/cryptography {
openssl = super.pkgs.openssl_1_1; openssl = super.pkgs.openssl_1_1;
cryptography_vectors = callPackage ./specific-versions/cryptography/vectors.nix {}; cryptography_vectors = callPackage ./specific-versions/cryptography/vectors.nix {};