dots/lib/default.nix
Gene Liverman 72fca31cf3 Repurpose nixnas1 as beancoin1
This includes configuring Nix Bitcoin within my existing flake. The
intent is to run Bitcoin Core, LND, Electrs, Mempool, and Alby Hub here
instead of via Umbrel.

Note, Fulcrum was tried but kept crashing and losing state... which is
not okay with me.
2025-02-04 16:07:22 -05:00

9 lines
349 B
Nix

{ inputs, ... }: let
mkDarwinHost = import ./mkDarwinHost.nix { inherit inputs; };
mkNixosHost = import ./mkNixosHost.nix { inherit inputs; };
mkNixBitcoinHost = import ./mkNixBitcoinHost.nix { inherit inputs; };
in {
inherit (mkDarwinHost) mkDarwinHost;
inherit (mkNixosHost) mkNixosHost;
inherit (mkNixBitcoinHost) mkNixBitcoinHost;
}