2018-11-28 14:58:36 -08:00
|
|
|
let
|
|
|
|
secrets = import ./secrets/secrets.nix;
|
2018-12-03 14:16:01 -08:00
|
|
|
bitcoin-rpcpassword = {
|
|
|
|
text = secrets.bitcoinrpcpassword;
|
|
|
|
destDir = "/secrets/";
|
|
|
|
user = "bitcoin";
|
|
|
|
group = "bitcoinrpc";
|
|
|
|
permissions = "0440";
|
|
|
|
};
|
|
|
|
lightning-charge-api-token = {
|
|
|
|
text = "API_TOKEN=" + secrets.lightning-charge-api-token;
|
|
|
|
destDir = "/secrets/";
|
|
|
|
user = "clightning";
|
|
|
|
group = "clightning";
|
|
|
|
permissions = "0440";
|
|
|
|
};
|
|
|
|
# variable is called CHARGE_TOKEN instead of API_TOKEN
|
|
|
|
lightning-charge-api-token-for-nanopos = {
|
|
|
|
text = "CHARGE_TOKEN=" + secrets.lightning-charge-api-token;
|
|
|
|
destDir = "/secrets/";
|
|
|
|
user = "nanopos";
|
|
|
|
group = "nanopos";
|
|
|
|
permissions = "0440";
|
|
|
|
};
|
2018-11-28 14:58:36 -08:00
|
|
|
in
|
2018-11-13 15:44:54 -08:00
|
|
|
{
|
|
|
|
bitcoin-node =
|
|
|
|
{ config, pkgs, ... }:
|
2018-12-03 14:16:01 -08:00
|
|
|
{
|
|
|
|
deployment.targetEnv = "virtualbox";
|
2018-11-13 15:44:54 -08:00
|
|
|
deployment.virtualbox.memorySize = 2048; # megabytes
|
|
|
|
deployment.virtualbox.vcpu = 2; # number of cpus
|
|
|
|
deployment.virtualbox.headless = true;
|
2018-11-28 14:58:36 -08:00
|
|
|
|
2018-12-01 08:36:07 -08:00
|
|
|
|
2018-12-03 14:16:01 -08:00
|
|
|
deployment.keys = {
|
|
|
|
inherit bitcoin-rpcpassword lightning-charge-api-token;
|
|
|
|
} // (if (config.services.nanopos.enable) then { inherit lightning-charge-api-token-for-nanopos; } else { });
|
2018-11-13 15:44:54 -08:00
|
|
|
};
|
|
|
|
}
|