adding nix-bitcoin
This commit is contained in:
parent
d7f84eb77b
commit
16b430074d
7 changed files with 174 additions and 160 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue