4b5b4eac58
Env vars can't be reliably passed through `sudo`, so always call nix-shell to setup the env after running sudo.
29 lines
812 B
Bash
Executable File
29 lines
812 B
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
|
|
services.clightning.extraConfig = "disable-dns";
|
|
}
|
|
EOF
|
|
|
|
./deploy-container.sh "$tmpDir/configuration.nix" "$@"
|