Remove profiles and replace with options to enable/disable each module separately in configuration.nix

This commit is contained in:
nixbitcoin
2019-04-06 16:50:30 +02:00
parent f00a0fa2d3
commit 6d723e896f
2 changed files with 35 additions and 39 deletions

View File

@@ -4,23 +4,7 @@ with lib;
let
cfg = config.services.nix-bitcoin;
minimalPackages = with pkgs; [
tor
bitcoin
clightning
nodeinfo
banlist
jq
];
allPackages = with pkgs; [
liquidd
lightning-charge
nanopos
spark-wallet
nodejs-8_x
nginx
];
operatorCopySSH = pkgs.writeText "operator-copy-ssh.sh" ''
operatorCopySSH = pkgs.writeText "operator-copy-ssh.sh" ''
mkdir -p ${config.users.users.operator.home}/.ssh
if [ -e "${config.users.users.root.home}/.vbox-nixops-client-key" ]; then
cp ${config.users.users.root.home}/.vbox-nixops-client-key ${config.users.users.operator.home}/.ssh/authorized_keys
@@ -52,13 +36,6 @@ in {
If enabled, the nix-bitcoin service will be installed.
'';
};
modules = mkOption {
type = types.enum [ "minimal" "all" ];
default = "minimal";
description = ''
If enabled, the nix-bitcoin service will be installed.
'';
};
};
config = mkIf cfg.enable {
@@ -102,10 +79,7 @@ in {
users.groups.bitcoinrpc = {};
# clightning
services.clightning = {
enable = true;
bitcoin-rpcuser = config.services.bitcoind.rpcuser;
};
services.clightning.bitcoin-rpcuser = config.services.bitcoind.rpcuser;
services.clightning.proxy = config.services.tor.client.socksListenAddress;
services.clightning.always-use-proxy = true;
services.clightning.bind-addr = "127.0.0.1:9735";
@@ -149,7 +123,6 @@ in {
};
};
services.liquidd.enable = cfg.modules == "all";
services.liquidd.rpcuser = "liquidrpc";
services.liquidd.prune = 1000;
services.liquidd.extraConfig = "
@@ -166,13 +139,7 @@ in {
version = 3;
};
services.lightning-charge.enable = cfg.modules == "all";
services.nanopos.enable = cfg.modules == "all";
services.nix-bitcoin-webindex.enable = cfg.modules == "all";
services.clightning.autolisten = cfg.modules == "all";
services.spark-wallet.enable = cfg.modules == "all";
services.spark-wallet.onion-service = true;
services.electrs.enable = false;
services.electrs.port = 50001;
services.electrs.high-memory = false;
services.tor.hiddenServices.electrs = {
@@ -181,7 +148,20 @@ in {
}];
version = 3;
};
environment.systemPackages = if (cfg.modules == "all") then (minimalPackages ++ allPackages) else minimalPackages;
environment.systemPackages = with pkgs; [
tor
bitcoin
nodeinfo
banlist
jq
]
++ optionals config.services.clightning.enable [clightning]
++ optionals config.services.lightning-charge.enable [lightning-charge]
++ optionals config.services.nanopos.enable [nanopos]
++ optionals config.services.nix-bitcoin-webindex.enable [nginx]
++ optionals config.services.liquidd.enable [liquidd]
++ optionals config.services.spark-wallet.enable [spark-wallet]
++ optionals config.services.electrs.enable [electrs];
};
}