2018-11-20 02:09:57 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 23:47:42 +03:00
|
|
|
cfg = config.services;
|
|
|
|
|
2020-04-07 23:47:37 +03:00
|
|
|
mkHiddenService = map: {
|
|
|
|
map = [ map ];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
in {
|
2020-04-07 23:47:32 +03:00
|
|
|
imports = [ ../modules.nix ];
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2020-04-07 23:47:40 +03:00
|
|
|
options = {
|
2020-04-07 23:47:41 +03:00
|
|
|
services.clightning.onionport = mkOption {
|
|
|
|
type = types.ints.u16;
|
|
|
|
default = 9735;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
|
|
|
|
2020-04-07 23:47:40 +03:00
|
|
|
services.electrs.onionport = mkOption {
|
|
|
|
type = types.ints.u16;
|
|
|
|
default = 50002;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-07 23:47:33 +03:00
|
|
|
config = {
|
|
|
|
# For backwards compatibility only
|
2020-01-12 22:52:39 +03:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
2019-01-01 22:16:24 +03:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2018-11-22 21:32:26 +03:00
|
|
|
# Tor
|
2020-04-07 23:47:35 +03:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
# LND uses ControlPort to create onion services
|
2020-04-07 23:47:42 +03:00
|
|
|
controlPort = mkIf cfg.lnd.enable 9051;
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2020-04-07 23:47:37 +03:00
|
|
|
hiddenServices.sshd = mkHiddenService { port = 22; };
|
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
|
2020-04-07 23:47:35 +03:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
2020-04-07 23:47:42 +03:00
|
|
|
sysperms = if cfg.electrs.enable then true else null;
|
|
|
|
disablewallet = if cfg.electrs.enable then true else null;
|
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 23:47:35 +03:00
|
|
|
enforceTor = true;
|
|
|
|
port = 8333;
|
|
|
|
zmqpubrawblock = "tcp://127.0.0.1:28332";
|
|
|
|
zmqpubrawtx = "tcp://127.0.0.1:28333";
|
|
|
|
assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
|
|
|
addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
|
|
|
discover = false;
|
|
|
|
addresstype = "bech32";
|
|
|
|
prune = 0;
|
|
|
|
dbCache = 1000;
|
|
|
|
};
|
2020-04-07 23:47:42 +03:00
|
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = cfg.bitcoind.port; };
|
2018-11-22 21:32:26 +03:00
|
|
|
|
|
|
|
# clightning
|
2020-04-07 23:47:35 +03:00
|
|
|
services.clightning = {
|
2020-04-07 23:47:42 +03:00
|
|
|
bitcoin-rpcuser = cfg.bitcoind.rpcuser;
|
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 23:47:35 +03:00
|
|
|
enforceTor = true;
|
|
|
|
always-use-proxy = true;
|
2020-04-07 23:47:42 +03:00
|
|
|
bind-addr = "127.0.0.1:${toString cfg.clightning.onionport}";
|
2020-04-07 23:47:35 +03:00
|
|
|
};
|
2020-04-07 23:47:42 +03:00
|
|
|
services.tor.hiddenServices.clightning = mkHiddenService { port = cfg.clightning.onionport; };
|
2018-12-01 23:48:58 +03:00
|
|
|
|
2019-08-05 11:44:38 +03:00
|
|
|
# lnd
|
|
|
|
services.lnd.enforceTor = true;
|
|
|
|
|
2020-04-07 23:47:38 +03:00
|
|
|
# liquidd
|
2020-04-07 23:47:35 +03:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
2020-04-07 23:47:43 +03:00
|
|
|
extraConfig = ''
|
|
|
|
mainchainrpcuser=${cfg.bitcoind.rpcuser}
|
|
|
|
mainchainrpcport=8332
|
|
|
|
'';
|
2020-04-07 23:47:35 +03:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
2020-04-07 23:47:42 +03:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 23:47:35 +03:00
|
|
|
enforceTor = true;
|
|
|
|
port = 7042;
|
|
|
|
};
|
2020-04-07 23:47:42 +03:00
|
|
|
services.tor.hiddenServices.liquidd = mkHiddenService { port = cfg.liquidd.port; };
|
2019-04-28 02:53:26 +03:00
|
|
|
|
2020-04-07 23:47:38 +03:00
|
|
|
# electrs
|
2020-04-07 23:47:35 +03:00
|
|
|
services.electrs = {
|
|
|
|
port = 50001;
|
|
|
|
enforceTor = true;
|
|
|
|
TLSProxy.enable = true;
|
|
|
|
TLSProxy.port = 50003;
|
|
|
|
};
|
2020-04-07 23:47:37 +03:00
|
|
|
services.tor.hiddenServices.electrs = mkHiddenService {
|
2020-04-07 23:47:42 +03:00
|
|
|
port = cfg.electrs.onionport;
|
|
|
|
toPort = cfg.electrs.TLSProxy.port;
|
2019-02-25 19:00:50 +03:00
|
|
|
};
|
2020-04-07 23:47:35 +03:00
|
|
|
|
2020-04-07 23:47:38 +03:00
|
|
|
services.spark-wallet.onion-service = true;
|
|
|
|
|
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
|
|
|
|
2020-04-07 23:47:45 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
2019-04-06 17:50:30 +03:00
|
|
|
tor
|
|
|
|
jq
|
2019-05-18 03:00:35 +03:00
|
|
|
qrencode
|
2020-04-07 23:47:45 +03:00
|
|
|
nix-bitcoin.nodeinfo
|
2019-04-29 23:39:25 +03:00
|
|
|
];
|
2020-04-07 23:47:38 +03:00
|
|
|
|
|
|
|
# Create user operator which can use bitcoin-cli and lightning-cli
|
|
|
|
users.users.operator = {
|
|
|
|
isNormalUser = true;
|
2020-04-07 23:47:42 +03:00
|
|
|
extraGroups = [ cfg.bitcoind.group ]
|
|
|
|
++ (optionals cfg.clightning.enable [ "clightning" ])
|
|
|
|
++ (optionals cfg.lnd.enable [ "lnd" ])
|
|
|
|
++ (optionals cfg.liquidd.enable [ cfg.liquidd.group ])
|
|
|
|
++ (optionals (cfg.hardware-wallets.ledger || cfg.hardware-wallets.trezor)
|
|
|
|
[ cfg.hardware-wallets.group ]);
|
2020-04-07 23:47:38 +03:00
|
|
|
};
|
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
|
|
|
services.onion-chef.access.operator = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "sshd" ];
|
|
|
|
|
|
|
|
# Unfortunately c-lightning doesn't allow setting the permissions of the rpc socket
|
|
|
|
# https://github.com/ElementsProject/lightning/issues/1366
|
|
|
|
security.sudo.configFile =
|
2020-04-07 23:47:42 +03:00
|
|
|
(optionalString cfg.clightning.enable ''
|
2020-04-07 23:47:38 +03:00
|
|
|
operator ALL=(clightning) NOPASSWD: ALL
|
|
|
|
'') +
|
2020-04-07 23:47:42 +03:00
|
|
|
(optionalString cfg.lnd.enable ''
|
2020-04-07 23:47:38 +03:00
|
|
|
operator ALL=(lnd) NOPASSWD: ALL
|
|
|
|
'');
|
|
|
|
|
|
|
|
# Give root ssh access to the operator account
|
2020-04-07 23:47:44 +03:00
|
|
|
# FIXME: move this to deployment/nixops.nix after merging PR 'nix-bitcoin-as-module'
|
2020-04-07 23:47:38 +03:00
|
|
|
systemd.services.copy-root-authorized-keys = {
|
|
|
|
description = "Copy root authorized keys";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2020-04-07 23:47:44 +03:00
|
|
|
serviceConfig.type = "oneshot";
|
|
|
|
script = let
|
|
|
|
operator = config.users.users.operator.home;
|
|
|
|
root = config.users.users.root.home;
|
|
|
|
in ''
|
|
|
|
mkdir -p ${operator}/.ssh
|
|
|
|
if [[ -e "${root}/.vbox-nixops-client-key" ]]; then
|
|
|
|
cp ${root}/.vbox-nixops-client-key ${operator}/.ssh/authorized_keys
|
|
|
|
fi
|
|
|
|
if [[ -e "/etc/ssh/authorized_keys.d/root" ]]; then
|
|
|
|
cat /etc/ssh/authorized_keys.d/root >> ${operator}/.ssh/authorized_keys
|
|
|
|
fi
|
|
|
|
chown -R operator ${operator}/.ssh
|
|
|
|
'';
|
2020-04-07 23:47:38 +03:00
|
|
|
};
|
2018-11-20 03:22:16 +03:00
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
}
|