adding nix-bitcoin

This commit is contained in:
Chris Cochrun 2022-09-18 05:43:46 -05:00
parent d7f84eb77b
commit 16b430074d
7 changed files with 174 additions and 160 deletions

View file

@ -107,6 +107,14 @@
# enableSSHSupport = true;
# };
nix-bitcoin = {
generateSecrets = true;
operator = {
enable = true;
name = "chris";
};
};
# List services that you want to enable:
services.locate = {
@ -127,6 +135,19 @@
dataDir = "/storage/monero";
};
services.bitcoind = {
enable = true;
};
services.clightning = {
enable = true;
};
services.rtl = {
enable = true;
nodes.clightning.enable = true;
};
# DDCLIENT
services.ddclient = {
enable = true;
@ -221,4 +242,8 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
# The nix-bitcoin release version that your config is compatible with.
# When upgrading to a backwards-incompatible release, nix-bitcoin will display an
# an error and provide instructions for migrating your config to the new release.
nix-bitcoin.configVersion = "0.0.77";
}