Skip to content

Commit

Permalink
Merge #748: update nixpkgs
Browse files Browse the repository at this point in the history
b9019d1 test: remove clightning TODO-EXTERNAL requiring to disable offers (Jonas Nick)
7fb481c update nixpkgs (Jonas Nick)

Pull request description:

ACKs for top commit:
  erikarvstedt:
    ACK b9019d1

Tree-SHA512: 0f18de71c4f98e29ccccc9150c8138fcaf860f6e7813ec9ee6ed76efec2340c35edfdbe75f0b6bb59b4fe407f0e1f9579ed5cda6f970bfb66625398f5a80161f
  • Loading branch information
jonasnick committed Dec 2, 2024
2 parents 64fb83b + b9019d1 commit ff847d5
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 59 deletions.
4 changes: 0 additions & 4 deletions examples/deploy-container-minimal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ cat > "$tmpDir/configuration.nix" <<EOF
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
Expand Down
7 changes: 0 additions & 7 deletions examples/deploy-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ 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
'';
};
};
}
Expand Down
7 changes: 0 additions & 7 deletions examples/deploy-qemu-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ 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
Expand Down
7 changes: 0 additions & 7 deletions examples/krops-vm-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,4 @@
<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
'';
}
4 changes: 0 additions & 4 deletions examples/qemu-vm/minimal-vm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,8 @@ rec {
nix-bitcoin.generateSecrets = true;
services.clightning.enable = true;
# 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
Expand Down
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkgs/pinned.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ pkgs: pkgsUnstable:
charge-lnd
elementsd
extra-container
lightning-loop
lightning-pool
lndconnect;

Expand All @@ -18,6 +17,7 @@ pkgs: pkgsUnstable:
electrs
fulcrum
hwi
lightning-loop
lnd
nbxplorer;

Expand Down
4 changes: 0 additions & 4 deletions test/clightning-replication.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@ let

# TODO-EXTERNAL:
# 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).
extraConfig = ''
disable-dns
disable-plugin=offers
'';
};
};
Expand Down
24 changes: 12 additions & 12 deletions test/nixos-search/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions test/tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ let

# TODO-EXTERNAL:
# 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 = ''
${optionalString config.test.noConnections "disable-dns"}
disable-plugin=offers
'';
test.data.clightning-plugins = let
plugins = config.services.clightning.plugins;
Expand Down

0 comments on commit ff847d5

Please sign in to comment.