2018-11-20 02:09:57 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 23:47:37 +03:00
|
|
|
mkHiddenService = map: {
|
|
|
|
map = [ map ];
|
|
|
|
version = 3;
|
|
|
|
};
|
|
|
|
|
2020-04-07 23:47:32 +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 {
|
2020-04-07 23:47:32 +03:00
|
|
|
imports = [ ../modules.nix ];
|
2018-11-22 21:32:26 +03:00
|
|
|
|
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:36 +03:00
|
|
|
controlPort = mkIf config.services.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;
|
|
|
|
sysperms = if config.services.electrs.enable then true else null;
|
|
|
|
disablewallet = if config.services.electrs.enable then true else null;
|
|
|
|
proxy = config.services.tor.client.socksListenAddress;
|
|
|
|
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:37 +03:00
|
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = config.services.bitcoind.port; };
|
2018-11-22 21:32:26 +03:00
|
|
|
|
|
|
|
# clightning
|
2020-04-07 23:47:35 +03:00
|
|
|
services.clightning = {
|
|
|
|
bitcoin-rpcuser = config.services.bitcoind.rpcuser;
|
|
|
|
proxy = config.services.tor.client.socksListenAddress;
|
|
|
|
enforceTor = true;
|
|
|
|
always-use-proxy = true;
|
|
|
|
bind-addr = "127.0.0.1:9735";
|
|
|
|
};
|
2020-04-07 23:47:37 +03:00
|
|
|
services.tor.hiddenServices.clightning = mkHiddenService { port = 9735; };
|
2018-12-01 23:48:58 +03:00
|
|
|
|
2019-08-05 11:44:38 +03:00
|
|
|
# lnd
|
|
|
|
services.lnd.enforceTor = true;
|
|
|
|
|
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-08-05 11:44:38 +03:00
|
|
|
++ (if config.services.lnd.enable then [ "lnd" ] 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-08-25 03:11:45 +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
|
|
|
# Unfortunately c-lightning doesn't allow setting the permissions of the rpc socket
|
|
|
|
# https://github.com/ElementsProject/lightning/issues/1366
|
2019-11-27 16:04:47 +03: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-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;
|
|
|
|
|
2020-04-07 23:47:35 +03:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
|
|
|
extraConfig = "
|
2019-02-11 11:02:11 +03:00
|
|
|
mainchainrpcuser=${config.services.bitcoind.rpcuser}
|
|
|
|
mainchainrpcport=8332
|
|
|
|
";
|
2020-04-07 23:47:35 +03:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
proxy = config.services.tor.client.socksListenAddress;
|
|
|
|
enforceTor = true;
|
|
|
|
port = 7042;
|
|
|
|
};
|
2020-04-07 23:47:37 +03:00
|
|
|
services.tor.hiddenServices.liquidd = mkHiddenService { port = config.services.liquidd.port; };
|
2019-04-28 02:53:26 +03:00
|
|
|
|
2019-03-27 03:49:54 +03:00
|
|
|
services.spark-wallet.onion-service = true;
|
2020-04-07 23:47:35 +03:00
|
|
|
|
|
|
|
services.electrs = {
|
|
|
|
port = 50001;
|
|
|
|
enforceTor = true;
|
|
|
|
onionport = 50002;
|
|
|
|
TLSProxy.enable = true;
|
|
|
|
TLSProxy.port = 50003;
|
|
|
|
};
|
2020-04-07 23:47:37 +03:00
|
|
|
services.tor.hiddenServices.electrs = mkHiddenService {
|
|
|
|
port = config.services.electrs.onionport;
|
|
|
|
toPort = config.services.electrs.TLSProxy.port;
|
2019-02-25 19:00:50 +03:00
|
|
|
};
|
2020-04-07 23:47:35 +03:00
|
|
|
|
2019-11-27 16:04:36 +03:00
|
|
|
environment.systemPackages = with pkgs; with nix-bitcoin; let
|
|
|
|
s = config.services;
|
|
|
|
in
|
|
|
|
[
|
2019-04-06 17:50:30 +03:00
|
|
|
tor
|
2019-11-27 16:04:21 +03:00
|
|
|
bitcoind
|
2019-11-27 16:04:36 +03:00
|
|
|
(hiPrio s.bitcoind.cli)
|
2019-04-06 17:50:30 +03:00
|
|
|
nodeinfo
|
|
|
|
jq
|
2019-05-18 03:00:35 +03:00
|
|
|
qrencode
|
2019-04-06 17:50:30 +03:00
|
|
|
]
|
2019-11-27 16:04:36 +03: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 23:39:25 +03:00
|
|
|
hwi
|
2019-11-27 16:04:36 +03:00
|
|
|
# To allow debugging issues with lsusb
|
2019-04-29 23:39:25 +03:00
|
|
|
usbutils
|
|
|
|
]
|
2019-11-27 16:04:36 +03:00
|
|
|
++ optionals s.hardware-wallets.trezor [
|
2019-10-27 22:52:56 +03:00
|
|
|
python3.pkgs.trezor
|
2019-04-29 23:39:25 +03:00
|
|
|
];
|
2018-11-20 03:22:16 +03:00
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
}
|