2018-11-20 02:09:57 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2019-01-01 22:16:24 +03:00
|
|
|
cfg = config.services.nix-bitcoin;
|
2019-04-06 17:50:30 +03:00
|
|
|
operatorCopySSH = pkgs.writeText "operator-copy-ssh.sh" ''
|
2018-12-11 02:11:44 +03: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-20 02:09:57 +03:00
|
|
|
in {
|
2019-01-02 18:17:57 +03:00
|
|
|
imports = [
|
2019-01-26 21:06:25 +03:00
|
|
|
./nix-bitcoin-pkgs.nix
|
2019-01-02 18:17:57 +03:00
|
|
|
./bitcoind.nix
|
|
|
|
./clightning.nix
|
|
|
|
./lightning-charge.nix
|
|
|
|
./nanopos.nix
|
|
|
|
./nix-bitcoin-webindex.nix
|
|
|
|
./liquid.nix
|
|
|
|
./spark-wallet.nix
|
2019-01-03 00:40:53 +03:00
|
|
|
./electrs.nix
|
2019-03-29 17:46:13 +03:00
|
|
|
./onion-chef.nix
|
2019-04-14 19:55:40 +03:00
|
|
|
./recurring-donations.nix
|
2019-04-29 23:39:25 +03:00
|
|
|
./hardware-wallets.nix
|
2019-01-02 18:17:57 +03:00
|
|
|
];
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2019-01-01 22:16:24 +03:00
|
|
|
options.services.nix-bitcoin = {
|
2018-11-20 02:09:57 +03:00
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2018-11-21 01:21:45 +03:00
|
|
|
If enabled, the nix-bitcoin service will be installed.
|
2018-11-20 02:09:57 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-01-01 22:16:24 +03:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2018-11-22 21:32:26 +03:00
|
|
|
# Tor
|
2018-11-20 02:09:57 +03:00
|
|
|
services.tor.enable = true;
|
|
|
|
services.tor.client.enable = true;
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2018-12-28 00:22:52 +03:00
|
|
|
# Tor SSH service
|
|
|
|
services.tor.hiddenServices.sshd = {
|
|
|
|
map = [{
|
|
|
|
port = 22;
|
|
|
|
}];
|
|
|
|
version = 3;
|
2019-01-01 22:16:24 +03:00
|
|
|
};
|
2018-12-28 00:22:52 +03:00
|
|
|
|
2018-11-23 03:46:56 +03:00
|
|
|
# bitcoind
|
|
|
|
services.bitcoind.enable = true;
|
|
|
|
services.bitcoind.listen = true;
|
2019-03-21 13:27:28 +03: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 03:46:56 +03:00
|
|
|
services.bitcoind.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-28 02:53:26 +03:00
|
|
|
services.bitcoind.enforceTor = true;
|
2018-11-23 03:46:56 +03:00
|
|
|
services.bitcoind.port = 8333;
|
|
|
|
services.bitcoind.rpcuser = "bitcoinrpc";
|
2018-11-23 23:37:50 +03:00
|
|
|
services.bitcoind.extraConfig = ''
|
|
|
|
assumevalid=0000000000000000000726d186d6298b5054b9a5c49639752294b322a305d240
|
|
|
|
addnode=ecoc5q34tmbq54wl.onion
|
|
|
|
discover=0
|
2019-05-18 02:59:15 +03:00
|
|
|
addresstype=bech32
|
|
|
|
changetype=bech32
|
2018-11-23 23:37:50 +03:00
|
|
|
'';
|
2019-02-10 21:46:07 +03:00
|
|
|
services.bitcoind.prune = 0;
|
2018-12-06 13:45:45 +03:00
|
|
|
services.bitcoind.dbCache = 1000;
|
2018-12-02 01:00:39 +03:00
|
|
|
services.tor.hiddenServices.bitcoind = {
|
|
|
|
map = [{
|
|
|
|
port = config.services.bitcoind.port;
|
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2018-12-03 18:31:44 +03:00
|
|
|
# Add bitcoinrpc group
|
|
|
|
users.groups.bitcoinrpc = {};
|
|
|
|
|
2018-11-22 21:32:26 +03:00
|
|
|
# clightning
|
2019-04-06 17:50:30 +03:00
|
|
|
services.clightning.bitcoin-rpcuser = config.services.bitcoind.rpcuser;
|
2019-03-07 15:16:11 +03:00
|
|
|
services.clightning.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-28 02:53:26 +03:00
|
|
|
services.clightning.enforceTor = true;
|
2019-03-07 15:16:11 +03:00
|
|
|
services.clightning.always-use-proxy = true;
|
|
|
|
services.clightning.bind-addr = "127.0.0.1:9735";
|
2018-12-01 23:48:58 +03:00
|
|
|
services.tor.hiddenServices.clightning = {
|
|
|
|
map = [{
|
2019-05-12 19:29:22 +03:00
|
|
|
port = 9735; toPort = 9735;
|
2018-12-01 23:48:58 +03:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
|
|
|
|
2018-12-02 01:00:39 +03:00
|
|
|
# Create user operator which can use bitcoin-cli and lightning-cli
|
2018-11-29 02:54:19 +03:00
|
|
|
users.users.operator = {
|
2018-11-23 18:49:13 +03:00
|
|
|
isNormalUser = true;
|
2019-04-05 16:49:38 +03:00
|
|
|
extraGroups = [ config.services.bitcoind.group ]
|
|
|
|
++ (if config.services.clightning.enable then [ "clightning" ] else [ ])
|
2019-04-29 23:39:25 +03: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 18:49:13 +03:00
|
|
|
};
|
2019-03-29 17:46:13 +03:00
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
2019-04-06 19:56:58 +03:00
|
|
|
services.onion-chef.access.operator = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "sshd" ];
|
2019-03-29 17:46:13 +03:00
|
|
|
|
2018-11-29 02:54:19 +03: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-04 00:43:15 +03:00
|
|
|
'' + (if config.services.liquidd.enable then ''
|
2019-08-01 18:05:07 +03:00
|
|
|
alias elements-cli='elements-cli -datadir=${config.services.liquidd.dataDir}'
|
2019-08-03 17:24:31 +03:00
|
|
|
alias liquidswap-cli='liquidswap-cli -c ${config.services.liquidd.dataDir}/elements.conf'
|
2018-12-04 00:43:15 +03:00
|
|
|
'' else "");
|
2018-11-29 02:54:19 +03:00
|
|
|
# Unfortunately c-lightning doesn't allow setting the permissions of the rpc socket
|
|
|
|
# https://github.com/ElementsProject/lightning/issues/1366
|
2019-04-05 16:49:38 +03:00
|
|
|
security.sudo.configFile = (
|
|
|
|
if config.services.clightning.enable then ''
|
|
|
|
operator ALL=(clightning) NOPASSWD: ALL
|
|
|
|
''
|
|
|
|
else ""
|
|
|
|
);
|
2018-11-29 02:54:19 +03:00
|
|
|
|
|
|
|
# Give root ssh access to the operator account
|
2018-11-23 18:49:13 +03:00
|
|
|
systemd.services.copy-root-authorized-keys = {
|
|
|
|
description = "Copy root authorized keys";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
2018-12-11 02:11:44 +03:00
|
|
|
ExecStart = "${pkgs.bash}/bin/bash \"${operatorCopySSH}\"";
|
2018-11-21 01:21:45 +03:00
|
|
|
user = "root";
|
|
|
|
type = "oneshot";
|
|
|
|
};
|
|
|
|
};
|
2018-11-23 18:49:13 +03:00
|
|
|
|
2019-04-28 02:53:26 +03:00
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
2018-12-04 01:33:21 +03:00
|
|
|
services.liquidd.rpcuser = "liquidrpc";
|
2018-12-06 13:45:45 +03:00
|
|
|
services.liquidd.prune = 1000;
|
2019-02-11 11:02:11 +03:00
|
|
|
services.liquidd.extraConfig = "
|
|
|
|
mainchainrpcuser=${config.services.bitcoind.rpcuser}
|
|
|
|
mainchainrpcport=8332
|
|
|
|
";
|
2019-07-26 15:19:17 +03:00
|
|
|
services.liquidd.validatepegin = true;
|
2019-03-14 12:36:18 +03:00
|
|
|
services.liquidd.listen = true;
|
|
|
|
services.liquidd.proxy = config.services.tor.client.socksListenAddress;
|
2019-04-28 02:53:26 +03:00
|
|
|
services.liquidd.enforceTor = true;
|
2019-03-18 16:17:38 +03:00
|
|
|
services.liquidd.port = 7042;
|
2019-03-14 12:36:18 +03:00
|
|
|
services.tor.hiddenServices.liquidd = {
|
|
|
|
map = [{
|
2019-03-18 16:17:38 +03:00
|
|
|
port = config.services.liquidd.port; toPort = config.services.liquidd.port;
|
2019-03-14 12:36:18 +03:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2019-04-28 02:53:26 +03:00
|
|
|
|
2019-03-27 03:49:54 +03:00
|
|
|
services.spark-wallet.onion-service = true;
|
2019-03-29 12:58:01 +03:00
|
|
|
services.electrs.port = 50001;
|
2019-04-28 02:53:26 +03:00
|
|
|
services.electrs.enforceTor = true;
|
2019-04-26 12:09:55 +03:00
|
|
|
services.electrs.onionport = 50002;
|
|
|
|
services.electrs.nginxport = 50003;
|
2019-02-25 19:00:50 +03:00
|
|
|
services.tor.hiddenServices.electrs = {
|
|
|
|
map = [{
|
2019-04-26 12:09:55 +03:00
|
|
|
port = config.services.electrs.onionport; toPort = config.services.electrs.nginxport;
|
2019-02-25 19:00:50 +03:00
|
|
|
}];
|
|
|
|
version = 3;
|
|
|
|
};
|
2019-04-06 17:50:30 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
tor
|
2019-05-18 01:31:40 +03:00
|
|
|
altcoins.bitcoind
|
2019-04-06 17:50:30 +03:00
|
|
|
nodeinfo
|
|
|
|
banlist
|
|
|
|
jq
|
2019-05-18 03:00:35 +03:00
|
|
|
qrencode
|
2019-04-06 17:50:30 +03:00
|
|
|
]
|
|
|
|
++ 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]
|
2019-08-03 17:24:31 +03:00
|
|
|
++ optionals config.services.liquidd.enable [elementsd liquid-swap]
|
2019-04-06 17:50:30 +03:00
|
|
|
++ optionals config.services.spark-wallet.enable [spark-wallet]
|
2019-04-29 23:39:25 +03:00
|
|
|
++ optionals config.services.electrs.enable [electrs]
|
|
|
|
++ optionals (config.services.hardware-wallets.ledger || config.services.hardware-wallets.trezor) [
|
|
|
|
hwi
|
|
|
|
# To allow debugging issues with lsusb:
|
|
|
|
usbutils
|
|
|
|
]
|
|
|
|
++ optionals config.services.hardware-wallets.trezor [
|
|
|
|
python35.pkgs.trezor
|
|
|
|
];
|
2018-11-20 03:22:16 +03:00
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
}
|
2019-03-20 18:33:40 +03:00
|
|
|
|