nix-bitcoin/examples/nixops/node.nix

13 lines
264 B
Nix
Raw Normal View History

{
2018-11-13 15:44:54 -08:00
network.description = "Bitcoin Core node";
bitcoin-node = { config, pkgs, lib, ... }: {
imports = [
../configuration.nix
<nix-bitcoin/modules/deployment/nixops.nix>
];
nix-bitcoin.deployment.secretsDir = toString ../secrets;
};
2018-11-13 15:44:54 -08:00
}