nix-bitcoin/modules/nix-bitcoin.nix

188 lines
6.5 KiB
Nix
Raw Normal View History

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