mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-23 23:02:38 +03:00
13 lines
264 B
Nix
13 lines
264 B
Nix
{
|
|
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;
|
|
};
|
|
}
|