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;
|
2019-04-06 14:50:30 +00:00
|
|
|
operatorCopySSH = pkgs.writeText "operator-copy-ssh.sh" ''
|
2018-12-10 23:11:44 +00:00
|
|
|
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-11-27 13:04:20 +00:00
|
|
|
imports = [ ./modules.nix ];
|
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
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2020-01-12 19:52:39 +00:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
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;
|
2019-08-05 08:44:38 +00:00
|
|
|
# LND uses ControlPort to create onion services
|
|
|
|
services.tor.controlPort = if config.services.lnd.enable then 9051 else null;
|
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;
|
2019-03-21 10:27:28 +00:00
|
|
|
services.bitcoind.sysperms = if config.services.electrs.enable then true else null;
|
|
|
|
services.bitcoind.disablewallet = if config.services.electrs.enable then true else null;
|
2018-11-23 00:46:56 +00:00
|
|
|
services.bitcoind.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-27 23:53:26 +00:00
|
|
|
services.bitcoind.enforceTor = true;
|
2018-11-23 00:46:56 +00:00
|
|
|
services.bitcoind.port = 8333;
|
|
|
|
services.bitcoind.rpcuser = "bitcoinrpc";
|
2019-08-05 08:44:38 +00:00
|
|
|
services.bitcoind.zmqpubrawblock = "tcp://127.0.0.1:28332";
|
|
|
|
services.bitcoind.zmqpubrawtx = "tcp://127.0.0.1:28333";
|
2020-02-23 19:22:07 +00:00
|
|
|
services.bitcoind.assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
2020-02-25 22:00:27 +00:00
|
|
|
services.bitcoind.addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
2020-02-23 19:22:07 +00:00
|
|
|
services.bitcoind.discover = false;
|
|
|
|
services.bitcoind.addresstype = "bech32";
|
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
|
|
|
|
|
|
|
# clightning
|
2019-04-06 14:50:30 +00:00
|
|
|
services.clightning.bitcoin-rpcuser = config.services.bitcoind.rpcuser;
|
2019-03-07 12:16:11 +00:00
|
|
|
services.clightning.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-27 23:53:26 +00:00
|
|
|
services.clightning.enforceTor = true;
|
2019-03-07 12:16:11 +00:00
|
|
|
services.clightning.always-use-proxy = true;
|
|
|
|
services.clightning.bind-addr = "127.0.0.1:9735";
|
2018-12-01 20:48:58 +00:00
|
|
|
services.tor.hiddenServices.clightning = {
|
|
|
|
map = [{
|
2019-05-12 16:29:22 +00:00
|
|
|
port = 9735; toPort = 9735;
|
2018-12-01 20:48:58 +00:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
|
|
|
|
2019-08-05 08:44:38 +00:00
|
|
|
# lnd
|
|
|
|
services.lnd.enforceTor = true;
|
|
|
|
|
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;
|
2019-04-05 13:49:38 +00:00
|
|
|
extraGroups = [ config.services.bitcoind.group ]
|
|
|
|
++ (if config.services.clightning.enable then [ "clightning" ] else [ ])
|
2019-08-05 08:44:38 +00:00
|
|
|
++ (if config.services.lnd.enable then [ "lnd" ] else [ ])
|
2019-04-29 20:39:25 +00:00
|
|
|
++ (if config.services.liquidd.enable then [ config.services.liquidd.group ] else [ ])
|
|
|
|
++ (if (config.services.hardware-wallets.ledger || config.services.hardware-wallets.trezor)
|
|
|
|
then [ config.services.hardware-wallets.group ] else [ ]);
|
2018-11-23 15:49:13 +00:00
|
|
|
};
|
2019-03-29 14:46:13 +00:00
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
2019-08-25 00:11:45 +00:00
|
|
|
services.onion-chef.access.operator = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "sshd" ];
|
2019-03-29 14:46:13 +00:00
|
|
|
|
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
|
2019-11-27 13:04:47 +00:00
|
|
|
security.sudo.configFile =
|
|
|
|
(optionalString config.services.clightning.enable ''
|
|
|
|
operator ALL=(clightning) NOPASSWD: ALL
|
|
|
|
'') +
|
|
|
|
(optionalString config.services.lnd.enable ''
|
|
|
|
operator ALL=(lnd) NOPASSWD: ALL
|
|
|
|
'');
|
2018-11-28 23:54:19 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2019-04-27 23:53:26 +00:00
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
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
|
|
|
|
";
|
2019-07-26 12:19:17 +00:00
|
|
|
services.liquidd.validatepegin = true;
|
2019-03-14 09:36:18 +00:00
|
|
|
services.liquidd.listen = true;
|
|
|
|
services.liquidd.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-27 23:53:26 +00:00
|
|
|
services.liquidd.enforceTor = true;
|
2019-03-18 13:17:38 +00:00
|
|
|
services.liquidd.port = 7042;
|
2019-03-14 09:36:18 +00:00
|
|
|
services.tor.hiddenServices.liquidd = {
|
|
|
|
map = [{
|
2019-03-18 13:17:38 +00:00
|
|
|
port = config.services.liquidd.port; toPort = config.services.liquidd.port;
|
2019-03-14 09:36:18 +00:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2019-04-27 23:53:26 +00:00
|
|
|
|
2019-03-27 00:49:54 +00:00
|
|
|
services.spark-wallet.onion-service = true;
|
2019-03-29 09:58:01 +00:00
|
|
|
services.electrs.port = 50001;
|
2019-04-27 23:53:26 +00:00
|
|
|
services.electrs.enforceTor = true;
|
2019-04-26 09:09:55 +00:00
|
|
|
services.electrs.onionport = 50002;
|
2020-03-04 17:08:49 +00:00
|
|
|
services.electrs.TLSProxy.enable = true;
|
|
|
|
services.electrs.TLSProxy.port = 50003;
|
2019-02-25 16:00:50 +00:00
|
|
|
services.tor.hiddenServices.electrs = {
|
|
|
|
map = [{
|
2020-03-04 17:08:49 +00:00
|
|
|
port = config.services.electrs.onionport; toPort = config.services.electrs.TLSProxy.port;
|
2019-02-25 16:00:50 +00:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2019-11-27 13:04:36 +00:00
|
|
|
environment.systemPackages = with pkgs; with nix-bitcoin; let
|
|
|
|
s = config.services;
|
|
|
|
in
|
|
|
|
[
|
2019-04-06 14:50:30 +00:00
|
|
|
tor
|
2019-11-27 13:04:21 +00:00
|
|
|
bitcoind
|
2019-11-27 13:04:36 +00:00
|
|
|
(hiPrio s.bitcoind.cli)
|
2019-04-06 14:50:30 +00:00
|
|
|
nodeinfo
|
|
|
|
jq
|
2019-05-18 00:00:35 +00:00
|
|
|
qrencode
|
2019-04-06 14:50:30 +00:00
|
|
|
]
|
2019-11-27 13:04:36 +00:00
|
|
|
++ optionals s.clightning.enable [clightning (hiPrio s.clightning.cli)]
|
|
|
|
++ optionals s.lnd.enable [lnd (hiPrio s.lnd.cli)]
|
|
|
|
++ optionals s.lightning-charge.enable [lightning-charge]
|
|
|
|
++ optionals s.nanopos.enable [nanopos]
|
|
|
|
++ optionals s.nix-bitcoin-webindex.enable [nginx]
|
|
|
|
++ optionals s.liquidd.enable [elementsd (hiPrio s.liquidd.cli) (hiPrio s.liquidd.swap-cli)]
|
|
|
|
++ optionals s.spark-wallet.enable [spark-wallet]
|
|
|
|
++ optionals s.electrs.enable [electrs]
|
|
|
|
++ optionals (s.hardware-wallets.ledger || s.hardware-wallets.trezor) [
|
2019-04-29 20:39:25 +00:00
|
|
|
hwi
|
2019-11-27 13:04:36 +00:00
|
|
|
# To allow debugging issues with lsusb
|
2019-04-29 20:39:25 +00:00
|
|
|
usbutils
|
|
|
|
]
|
2019-11-27 13:04:36 +00:00
|
|
|
++ optionals s.hardware-wallets.trezor [
|
2019-10-27 19:52:56 +00:00
|
|
|
python3.pkgs.trezor
|
2019-04-29 20:39:25 +00:00
|
|
|
];
|
2018-11-20 00:22:16 +00:00
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
}
|