update nixpkgs
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>
This commit is contained in:
parent
efd8ea7e02
commit
b26cea03b3
10 changed files with 88 additions and 21 deletions
|
|
@ -21,7 +21,13 @@ cat > "$tmpDir/configuration.nix" <<EOF
|
|||
password = "a";
|
||||
};
|
||||
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
|
||||
services.clightning.extraConfig = "disable-dns";
|
||||
# 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-dns
|
||||
disable-plugin=offers
|
||||
'';
|
||||
}
|
||||
EOF
|
||||
|
||||
|
|
|
|||
|
|
@ -83,6 +83,13 @@ read -rd '' src <<EOF || true
|
|||
$(realpath "$configuration")
|
||||
];
|
||||
nix-bitcoin.generateSecrets = true;
|
||||
|
||||
# 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
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,6 +30,13 @@ nix-build --out-link "$tmpDir/vm" - <<'EOF'
|
|||
<qemu-vm/vm-config.nix>
|
||||
];
|
||||
nix-bitcoin.generateSecrets = true;
|
||||
|
||||
# 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
|
||||
'';
|
||||
};
|
||||
}).config.system.build.vm
|
||||
EOF
|
||||
|
|
|
|||
|
|
@ -4,4 +4,11 @@
|
|||
<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
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,8 +26,14 @@ rec {
|
|||
|
||||
nix-bitcoin.generateSecrets = true;
|
||||
services.clightning.enable = true;
|
||||
# For faster startup in offline VMs
|
||||
services.clightning.extraConfig = "disable-dns";
|
||||
# disable-dns leads to faster startup in offline VMs
|
||||
# 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-dns
|
||||
disable-plugin=offers
|
||||
'';
|
||||
|
||||
# Avoid lengthy build of the nixos manual
|
||||
documentation.nixos.enable = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue