2018-11-19 23:09:57 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2019-01-01 19:16:24 +00:00
|
|
|
cfg = config.services.nix-bitcoin;
|
2018-12-03 15:31:44 +00:00
|
|
|
minimalPackages = with pkgs; [
|
2018-12-06 11:37:26 +00:00
|
|
|
tor
|
2018-12-03 15:31:44 +00:00
|
|
|
bitcoin
|
|
|
|
clightning
|
|
|
|
nodeinfo
|
|
|
|
jq
|
|
|
|
];
|
|
|
|
allPackages = with pkgs; [
|
2018-12-03 21:43:15 +00:00
|
|
|
liquidd
|
2018-12-03 15:31:44 +00:00
|
|
|
lightning-charge.package
|
|
|
|
nanopos.package
|
2018-12-10 16:34:41 +00:00
|
|
|
spark-wallet.package
|
2019-01-13 20:21:40 +00:00
|
|
|
# TODO: re-enable when fixed
|
|
|
|
#electrs
|
2018-12-03 15:31:44 +00:00
|
|
|
nodejs-8_x
|
|
|
|
nginx
|
|
|
|
];
|
2018-12-10 23:11:44 +00:00
|
|
|
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
|
|
|
|
fi
|
|
|
|
if [ -e "/etc/ssh/authorized_keys.d/root" ]; then
|
|
|
|
cat /etc/ssh/authorized_keys.d/root >> ${config.users.users.operator.home}/.ssh/authorized_keys
|
|
|
|
fi
|
|
|
|
chown -R operator ${config.users.users.operator.home}/.ssh
|
|
|
|
'';
|
2018-11-19 23:09:57 +00:00
|
|
|
in {
|
2019-01-02 15:17:57 +00:00
|
|
|
imports = [
|
2019-01-26 18:06:25 +00:00
|
|
|
./nix-bitcoin-pkgs.nix
|
2019-01-02 15:17:57 +00:00
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
|
|
|
./lightning-charge.nix
|
|
|
|
./nanopos.nix
|
|
|
|
./nix-bitcoin-webindex.nix
|
|
|
|
./liquid.nix
|
|
|
|
./spark-wallet.nix
|
2019-01-02 21:40:53 +00:00
|
|
|
./electrs.nix
|
2019-01-02 15:17:57 +00:00
|
|
|
];
|
2018-11-22 18:32:26 +00:00
|
|
|
|
2019-01-01 19:16:24 +00:00
|
|
|
options.services.nix-bitcoin = {
|
2018-11-19 23:09:57 +00:00
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2018-11-20 22:21:45 +00:00
|
|
|
If enabled, the nix-bitcoin service will be installed.
|
2018-11-19 23:09:57 +00:00
|
|
|
'';
|
|
|
|
};
|
2018-12-03 15:31:44 +00:00
|
|
|
modules = mkOption {
|
|
|
|
type = types.enum [ "minimal" "all" ];
|
|
|
|
default = "minimal";
|
|
|
|
description = ''
|
|
|
|
If enabled, the nix-bitcoin service will be installed.
|
|
|
|
'';
|
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-01-01 19:16:24 +00:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2018-11-22 18:32:26 +00:00
|
|
|
# Tor
|
2018-11-19 23:09:57 +00:00
|
|
|
services.tor.enable = true;
|
|
|
|
services.tor.client.enable = true;
|
2018-11-22 18:32:26 +00:00
|
|
|
|
2018-12-27 21:22:52 +00:00
|
|
|
# Tor SSH service
|
|
|
|
services.tor.hiddenServices.sshd = {
|
|
|
|
map = [{
|
|
|
|
port = 22;
|
|
|
|
}];
|
|
|
|
version = 3;
|
2019-01-01 19:16:24 +00:00
|
|
|
};
|
2018-12-27 21:22:52 +00:00
|
|
|
|
2018-11-23 00:46:56 +00:00
|
|
|
# bitcoind
|
|
|
|
services.bitcoind.enable = true;
|
|
|
|
services.bitcoind.listen = true;
|
|
|
|
services.bitcoind.proxy = config.services.tor.client.socksListenAddress;
|
|
|
|
services.bitcoind.port = 8333;
|
|
|
|
services.bitcoind.rpcuser = "bitcoinrpc";
|
2018-11-23 20:37:50 +00:00
|
|
|
services.bitcoind.extraConfig = ''
|
|
|
|
assumevalid=0000000000000000000726d186d6298b5054b9a5c49639752294b322a305d240
|
|
|
|
addnode=ecoc5q34tmbq54wl.onion
|
|
|
|
discover=0
|
|
|
|
'';
|
2019-02-10 18:46:07 +00:00
|
|
|
services.bitcoind.prune = 0;
|
2018-12-06 10:45:45 +00:00
|
|
|
services.bitcoind.dbCache = 1000;
|
2018-12-01 22:00:39 +00:00
|
|
|
services.tor.hiddenServices.bitcoind = {
|
|
|
|
map = [{
|
|
|
|
port = config.services.bitcoind.port;
|
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-22 18:32:26 +00:00
|
|
|
|
2018-12-03 15:31:44 +00:00
|
|
|
# Add bitcoinrpc group
|
|
|
|
users.groups.bitcoinrpc = {};
|
|
|
|
|
2018-11-22 18:32:26 +00:00
|
|
|
# clightning
|
2018-12-01 20:48:58 +00:00
|
|
|
services.clightning = {
|
|
|
|
enable = true;
|
|
|
|
bitcoin-rpcuser = config.services.bitcoind.rpcuser;
|
|
|
|
};
|
|
|
|
services.tor.hiddenServices.clightning = {
|
|
|
|
map = [{
|
|
|
|
port = 9375; toPort = 9375;
|
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
|
|
|
|
2018-12-01 22:00:39 +00:00
|
|
|
# Create user operator which can use bitcoin-cli and lightning-cli
|
2018-11-28 23:54:19 +00:00
|
|
|
users.users.operator = {
|
2018-11-23 15:49:13 +00:00
|
|
|
isNormalUser = true;
|
2018-12-03 21:43:15 +00:00
|
|
|
extraGroups = [ "clightning" config.services.bitcoind.group ]
|
|
|
|
++ (if config.services.liquidd.enable then [ config.services.liquidd.group ] else [ ]);
|
2018-11-28 23:54:19 +00:00
|
|
|
|
2018-11-23 15:49:13 +00:00
|
|
|
};
|
2018-11-28 23:54:19 +00:00
|
|
|
environment.interactiveShellInit = ''
|
|
|
|
alias bitcoin-cli='bitcoin-cli -datadir=${config.services.bitcoind.dataDir}'
|
|
|
|
alias lightning-cli='sudo -u clightning lightning-cli --lightning-dir=${config.services.clightning.dataDir}'
|
2018-12-03 21:43:15 +00:00
|
|
|
'' + (if config.services.liquidd.enable then ''
|
|
|
|
alias liquid-cli='liquid-cli -datadir=${config.services.liquidd.dataDir}'
|
|
|
|
'' else "");
|
2018-11-28 23:54:19 +00:00
|
|
|
# Unfortunately c-lightning doesn't allow setting the permissions of the rpc socket
|
|
|
|
# https://github.com/ElementsProject/lightning/issues/1366
|
|
|
|
security.sudo.configFile = ''
|
|
|
|
operator ALL=(clightning) NOPASSWD: ALL
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Give root ssh access to the operator account
|
2018-11-23 15:49:13 +00:00
|
|
|
systemd.services.copy-root-authorized-keys = {
|
|
|
|
description = "Copy root authorized keys";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
2018-12-10 23:11:44 +00:00
|
|
|
ExecStart = "${pkgs.bash}/bin/bash \"${operatorCopySSH}\"";
|
2018-11-20 22:21:45 +00:00
|
|
|
user = "root";
|
|
|
|
type = "oneshot";
|
|
|
|
};
|
|
|
|
};
|
2018-11-23 15:49:13 +00:00
|
|
|
|
2018-12-03 21:43:15 +00:00
|
|
|
services.liquidd.enable = cfg.modules == "all";
|
2018-12-03 22:33:21 +00:00
|
|
|
services.liquidd.rpcuser = "liquidrpc";
|
2018-12-06 10:45:45 +00:00
|
|
|
services.liquidd.prune = 1000;
|
2019-02-11 08:02:11 +00:00
|
|
|
services.liquidd.extraConfig = "
|
|
|
|
mainchainrpcuser=${config.services.bitcoind.rpcuser}
|
|
|
|
mainchainrpcport=8332
|
|
|
|
";
|
2018-12-03 22:33:21 +00:00
|
|
|
|
2018-12-03 15:31:44 +00:00
|
|
|
services.lightning-charge.enable = cfg.modules == "all";
|
|
|
|
services.nanopos.enable = cfg.modules == "all";
|
2019-01-01 19:16:24 +00:00
|
|
|
services.nix-bitcoin-webindex.enable = cfg.modules == "all";
|
2018-12-03 21:43:15 +00:00
|
|
|
services.clightning.autolisten = cfg.modules == "all";
|
2018-12-10 16:34:41 +00:00
|
|
|
services.spark-wallet.enable = cfg.modules == "all";
|
2019-01-13 20:21:40 +00:00
|
|
|
# TODO: re-enable when fixed
|
|
|
|
services.electrs.enable = false;
|
2018-12-10 16:34:41 +00:00
|
|
|
services.tor.hiddenServices.spark-wallet = {
|
|
|
|
map = [{
|
|
|
|
port = 80; toPort = 9737;
|
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-12-03 15:31:44 +00:00
|
|
|
environment.systemPackages = if (cfg.modules == "all") then (minimalPackages ++ allPackages) else minimalPackages;
|
2018-11-20 00:22:16 +00:00
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
}
|