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>
35 lines
1.0 KiB
Bash
Executable File
35 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
tmpDir=$(mktemp -d /tmp/nix-bitcoin-minimal-container.XXX)
|
|
trap 'rm -rf $tmpDir' EXIT
|
|
|
|
cd "${BASH_SOURCE[0]%/*}"
|
|
|
|
# Modify importable-configuration.nix to use the local <nix-bitcoin>
|
|
# source instead of fetchTarball
|
|
<importable-configuration.nix sed '
|
|
s|nix-bitcoin = .*|nix-bitcoin = toString <nix-bitcoin>;|;
|
|
s|system.extraDependencies = .*||
|
|
' > "$tmpDir/importable-configuration.nix"
|
|
|
|
cat > "$tmpDir/configuration.nix" <<EOF
|
|
{
|
|
imports = [ $tmpDir/importable-configuration.nix ];
|
|
users.users.main = {
|
|
isNormalUser = true;
|
|
password = "a";
|
|
};
|
|
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
|
|
# 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
|
|
|
|
./deploy-container.sh "$tmpDir/configuration.nix" "$@"
|