2022-06-01 12:35:50 -07:00
|
|
|
## Examples
|
2020-12-24 02:29:14 -08:00
|
|
|
|
|
|
|
The easiest way to try out nix-bitcoin is to use one of the provided examples.
|
|
|
|
|
2022-06-01 12:35:50 -07:00
|
|
|
### Flakes-based quick start
|
|
|
|
|
|
|
|
If you use a Flakes-enabled version of Nix, run the following command to start a minimal
|
|
|
|
nix-bitcoin QEMU VM:
|
|
|
|
```bash
|
|
|
|
nix run github:fort-nix/nix-bitcoin/release
|
|
|
|
```
|
|
|
|
The VM (defined in [flake.nix](../flake.nix)) runs in the terminal and has `bitcoind`
|
|
|
|
and `clightning` installed.\
|
|
|
|
It leaves no traces (outside of `/nix/store`) on the host system.
|
|
|
|
|
|
|
|
|
|
|
|
### More examples
|
|
|
|
|
|
|
|
Clone this repo and enter the examples shell:
|
2020-12-24 02:29:14 -08:00
|
|
|
```bash
|
|
|
|
git clone https://github.com/fort-nix/nix-bitcoin
|
|
|
|
cd nix-bitcoin/examples/
|
|
|
|
nix-shell
|
|
|
|
```
|
|
|
|
|
|
|
|
The following example scripts set up a nix-bitcoin node according to [`configuration.nix`](configuration.nix) and then
|
|
|
|
shut down immediately. They leave no traces (outside of `/nix/store`) on the host system.\
|
2021-01-14 04:24:24 -08:00
|
|
|
By default, [`configuration.nix`](configuration.nix) enables `bitcoind` and `clightning`.
|
2020-12-24 02:29:14 -08:00
|
|
|
|
|
|
|
- [`./deploy-container.sh`](deploy-container.sh) creates a [NixOS container](https://github.com/erikarvstedt/extra-container).\
|
|
|
|
This is the fastest way to set up a node.\
|
|
|
|
Requires: [Nix](https://nixos.org/), a systemd-based Linux distro and root privileges
|
|
|
|
|
|
|
|
- [`./deploy-qemu-vm.sh`](deploy-qemu-vm.sh) creates a QEMU VM.\
|
2021-09-25 12:43:31 -07:00
|
|
|
Requires: [Nix](https://nixos.org/nix/), Linux
|
2020-12-24 02:29:14 -08:00
|
|
|
|
2021-03-10 05:08:40 -08:00
|
|
|
- [`./deploy-krops.sh`](deploy-krops.sh) creates a QEMU VM and deploys a
|
|
|
|
nix-bitcoin configuration to it using [krops](https://github.com/krebs/krops).\
|
2021-09-25 12:43:31 -07:00
|
|
|
Requires: [Nix](https://nixos.org/nix/), Linux
|
2021-03-10 05:08:40 -08:00
|
|
|
|
2020-12-24 02:29:14 -08:00
|
|
|
- [`./deploy-container-minimal.sh`](deploy-container-minimal.sh) creates a
|
2021-09-23 07:51:34 -07:00
|
|
|
container defined by [importable-configuration.nix](importable-configuration.nix).\
|
|
|
|
You can copy and import this file to use nix-bitcoin in an existing NixOS configuration.\
|
|
|
|
The configuration doesn't use the [secure-node.nix](../modules/presets/secure-node.nix) preset.\
|
2020-12-24 02:29:14 -08:00
|
|
|
Requires: [Nix](https://nixos.org/), a systemd-based Linux distro and root privileges
|
|
|
|
|
|
|
|
Run the examples with option `--interactive` or `-i` to start a shell for interacting with
|
|
|
|
the node:
|
|
|
|
```bash
|
|
|
|
./deploy-qemu-vm.sh -i
|
|
|
|
```
|
|
|
|
|
|
|
|
### Tests
|
|
|
|
The internal test suite is also useful for exploring features.\
|
|
|
|
The following `run-tests.sh` commands leave no traces (outside of `/nix/store`) on
|
|
|
|
the host system.
|
|
|
|
|
2022-10-22 10:37:58 -07:00
|
|
|
`run-tests.sh` requires Nix >= 2.10.
|
|
|
|
|
2020-12-24 02:29:14 -08:00
|
|
|
```bash
|
|
|
|
git clone https://github.com/fort-nix/nix-bitcoin
|
|
|
|
cd nix-bitcoin/test
|
|
|
|
|
2021-03-26 15:23:22 -07:00
|
|
|
# Run a node in a VM. No tests are executed.
|
|
|
|
./run-tests.sh vm
|
|
|
|
systemctl status bitcoind
|
|
|
|
|
2020-12-24 02:29:14 -08:00
|
|
|
# Run a Python test shell inside a VM node
|
|
|
|
./run-tests.sh debug
|
|
|
|
print(succeed("systemctl status bitcoind"))
|
2021-03-26 15:23:22 -07:00
|
|
|
run_test("bitcoind")
|
2020-12-24 02:29:14 -08:00
|
|
|
|
|
|
|
# Run a node in a container. Requires systemd and root privileges.
|
|
|
|
./run-tests.sh container
|
|
|
|
c systemctl status bitcoind
|
|
|
|
|
|
|
|
# Explore a single feature
|
|
|
|
./run-tests.sh --scenario electrs container
|
2021-01-30 01:47:01 -08:00
|
|
|
|
|
|
|
# Run a command in a container
|
|
|
|
./run-tests.sh --scenario '{
|
|
|
|
services.clightning.enable = true;
|
|
|
|
nix-bitcoin.nodeinfo.enable = true;
|
|
|
|
}' container --run c nodeinfo
|
2020-12-24 02:29:14 -08:00
|
|
|
```
|
|
|
|
See [`run-tests.sh`](../test/run-tests.sh) for a complete documentation.
|
2021-08-15 02:28:33 -07:00
|
|
|
|
2022-10-22 10:37:58 -07:00
|
|
|
#### Flakes
|
|
|
|
Tests can also be directly accessed via Flakes:
|
|
|
|
```bash
|
|
|
|
# Build test
|
|
|
|
nix build --no-link ..#tests.default
|
|
|
|
|
|
|
|
# Run a node in a VM. No tests are executed.
|
|
|
|
nix run ..#tests.default.vm
|
|
|
|
|
|
|
|
# Run a Python test shell inside a VM node
|
|
|
|
nix run ..#tests.default.run -- --debug
|
|
|
|
|
|
|
|
# Run a node in a container. Requires extra-container, systemd and root privileges
|
|
|
|
nix run ..#tests.default.container
|
|
|
|
nix run ..#tests.default.containerLegacy # For NixOS with `system.stateVersion` <22.05
|
|
|
|
|
|
|
|
# Run a command in a container
|
|
|
|
nix run ..#tests.default.container -- --run c nodeinfo
|
|
|
|
nix run ..#tests.default.containerLegacy -- --run c nodeinfo # For NixOS with `system.stateVersion` <22.05
|
|
|
|
```
|
|
|
|
|
2021-08-15 02:28:33 -07:00
|
|
|
### Real-world example
|
|
|
|
Check the [server repo](https://github.com/fort-nix/nixbitcoin.org) for https://nixbitcoin.org
|
|
|
|
to see the configuration of a nix-bitcoin node that's used in production.
|
|
|
|
|
|
|
|
The commands in `shell.nix` allow you to locally run the node in a VM or container.
|
2021-08-16 01:42:07 -07:00
|
|
|
|
|
|
|
### Flakes
|
|
|
|
|
|
|
|
Flakes make it easy to include `nix-bitcoin` in an existing NixOS config.
|
|
|
|
The [flakes example](./flakes/flake.nix) shows how to use `nix-bitcoin` as an input to a system flake.
|