2022-06-01 12:31:33 -07:00
|
|
|
nix-bitcoin: pkgs: system:
|
|
|
|
|
|
|
|
rec {
|
|
|
|
inherit (nix-bitcoin.inputs) nixpkgs;
|
|
|
|
|
|
|
|
mkVMScript = vm: pkgs.writers.writeBash "run-vm" ''
|
|
|
|
set -euo pipefail
|
|
|
|
export TMPDIR=$(mktemp -d /tmp/nix-bitcoin-vm.XXX)
|
|
|
|
trap "rm -rf $TMPDIR" EXIT
|
|
|
|
export NIX_DISK_IMAGE=$TMPDIR/nixos.qcow2
|
|
|
|
QEMU_OPTS="-smp $(nproc) -m 1500" ${vm}/bin/run-*-vm
|
|
|
|
'';
|
|
|
|
|
|
|
|
vm = (import "${nixpkgs}/nixos" {
|
|
|
|
inherit system;
|
2022-06-27 15:08:28 -07:00
|
|
|
configuration = { config, lib, modulesPath, ... }: {
|
2022-06-01 12:31:33 -07:00
|
|
|
imports = [
|
|
|
|
nix-bitcoin.nixosModules.default
|
|
|
|
"${nix-bitcoin}/modules/presets/secure-node.nix"
|
2022-06-27 15:08:28 -07:00
|
|
|
"${modulesPath}/virtualisation/qemu-vm.nix"
|
2022-06-01 12:31:33 -07:00
|
|
|
];
|
|
|
|
|
2022-06-27 15:08:28 -07:00
|
|
|
virtualisation.graphics = false;
|
|
|
|
|
2022-06-01 12:31:33 -07:00
|
|
|
nix-bitcoin.generateSecrets = true;
|
|
|
|
services.clightning.enable = true;
|
|
|
|
# For faster startup in offline VMs
|
|
|
|
services.clightning.extraConfig = "disable-dns";
|
|
|
|
|
|
|
|
nixpkgs.pkgs = pkgs;
|
|
|
|
services.getty.autologinUser = "root";
|
|
|
|
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
|
2022-06-01 12:35:50 -07:00
|
|
|
|
|
|
|
services.getty.helpLine = lib.mkAfter ''
|
|
|
|
|
|
|
|
Welcome to nix-bitcoin!
|
|
|
|
To explore running services, try the following commands:
|
|
|
|
- nodeinfo
|
|
|
|
- systemctl status bitcoind
|
|
|
|
- systemctl status clightning
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Power off VM when the user exits the shell
|
|
|
|
systemd.services."serial-getty@".preStop = ''
|
|
|
|
echo o >/proc/sysrq-trigger
|
|
|
|
'';
|
2022-06-27 15:08:28 -07:00
|
|
|
|
|
|
|
system.stateVersion = config.system.nixos.release;
|
2022-06-01 12:31:33 -07:00
|
|
|
};
|
2022-06-27 15:08:28 -07:00
|
|
|
}).config.system.build.vm;
|
2022-06-01 12:31:33 -07:00
|
|
|
|
|
|
|
runVM = mkVMScript vm;
|
|
|
|
}
|