diff --git a/custom-add-ons.md b/custom-add-ons.md index 8dc318f..dc880c2 100644 --- a/custom-add-ons.md +++ b/custom-add-ons.md @@ -23,14 +23,14 @@ The code will be installed in the `custom.nix` file. The code for Bitcoin Core is as follows: ```nix -services.bitcoind.package = mkForce config.nix-bitcoin.pkgs.bitcoind; +services.bitcoind.package = lib.mkForce config.nix-bitcoin.pkgs.bitcoind; ``` The code for CLN for BTCpayserver backend is as follows: ```nix -services.btcpayserver.lightningBackend = mkForce "clightning"; +services.btcpayserver.lightningBackend = lib.mkForce "clightning"; ```