mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-22 13:14:15 +03:00
b26cea03b3
bitcoin: 27.0 -> 27.1 bitcoind: 27.0 -> 27.1 clightning: 24.02.2 -> 24.05 fulcrum: 1.10.0 -> 1.11.0 lnd: 0.17.5-beta -> 0.18.0-beta Co-authored-by: Erik Arvstedt <erik.arvstedt@gmail.com>
15 lines
380 B
Nix
15 lines
380 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
./configuration.nix
|
|
<nix-bitcoin/modules/deployment/krops.nix>
|
|
<qemu-vm/vm-config.nix>
|
|
];
|
|
|
|
# TODO-EXTERNAL:
|
|
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
services.clightning.extraConfig = ''
|
|
disable-plugin=offers
|
|
'';
|
|
}
|