2018-11-19 15:09:57 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 13:47:42 -07:00
|
|
|
cfg = config.services;
|
|
|
|
|
2020-05-03 07:42:53 -07:00
|
|
|
operatorName = config.nix-bitcoin.operatorName;
|
|
|
|
|
2020-04-07 13:47:37 -07:00
|
|
|
mkHiddenService = map: {
|
|
|
|
map = [ map ];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-19 15:09:57 -08:00
|
|
|
in {
|
2020-05-03 07:42:53 -07:00
|
|
|
imports = [
|
|
|
|
../modules.nix
|
|
|
|
../nodeinfo.nix
|
|
|
|
../nix-bitcoin-webindex.nix
|
|
|
|
];
|
2018-11-22 10:32:26 -08:00
|
|
|
|
2020-04-07 13:47:40 -07:00
|
|
|
options = {
|
2020-04-07 13:47:41 -07:00
|
|
|
services.clightning.onionport = mkOption {
|
2020-06-02 08:09:52 -07:00
|
|
|
type = types.port;
|
2020-04-07 13:47:41 -07:00
|
|
|
default = 9735;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
2020-04-07 13:47:40 -07:00
|
|
|
services.electrs.onionport = mkOption {
|
2020-06-02 08:09:52 -07:00
|
|
|
type = types.port;
|
2020-04-07 13:47:40 -07:00
|
|
|
default = 50002;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
2020-05-03 07:42:53 -07:00
|
|
|
nix-bitcoin.operatorName = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "operator";
|
|
|
|
description = "Less-privileged user's name.";
|
|
|
|
};
|
2020-04-07 13:47:40 -07:00
|
|
|
};
|
|
|
|
|
2020-04-07 13:47:33 -07:00
|
|
|
config = {
|
|
|
|
# For backwards compatibility only
|
2020-01-12 11:52:39 -08:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
2019-01-01 11:16:24 -08:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2018-11-22 10:32:26 -08:00
|
|
|
# Tor
|
2020-04-07 13:47:35 -07:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
# LND uses ControlPort to create onion services
|
2020-04-07 13:47:42 -07:00
|
|
|
controlPort = mkIf cfg.lnd.enable 9051;
|
2018-11-22 10:32:26 -08:00
|
|
|
|
2020-04-07 13:47:37 -07:00
|
|
|
hiddenServices.sshd = mkHiddenService { port = 22; };
|
2019-01-01 11:16:24 -08:00
|
|
|
};
|
2018-12-27 13:22:52 -08:00
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
# bitcoind
|
2020-04-07 13:47:35 -07:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
2020-04-24 07:21:12 -07:00
|
|
|
dataDirReadableByGroup = mkIf cfg.electrs.high-memory true;
|
2020-04-07 13:47:42 -07:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 13:47:35 -07:00
|
|
|
enforceTor = true;
|
|
|
|
port = 8333;
|
|
|
|
assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
|
|
|
addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
|
|
|
discover = false;
|
|
|
|
addresstype = "bech32";
|
|
|
|
dbCache = 1000;
|
|
|
|
};
|
2020-04-07 13:47:42 -07:00
|
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = cfg.bitcoind.port; };
|
2018-11-22 10:32:26 -08:00
|
|
|
|
|
|
|
# clightning
|
2020-04-07 13:47:35 -07:00
|
|
|
services.clightning = {
|
2020-04-07 13:47:42 -07:00
|
|
|
bitcoin-rpcuser = cfg.bitcoind.rpcuser;
|
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 13:47:35 -07:00
|
|
|
enforceTor = true;
|
|
|
|
always-use-proxy = true;
|
2020-04-07 13:47:42 -07:00
|
|
|
bind-addr = "127.0.0.1:${toString cfg.clightning.onionport}";
|
2020-04-07 13:47:35 -07:00
|
|
|
};
|
2020-04-07 13:47:42 -07:00
|
|
|
services.tor.hiddenServices.clightning = mkHiddenService { port = cfg.clightning.onionport; };
|
2018-12-01 12:48:58 -08:00
|
|
|
|
2019-08-05 01:44:38 -07:00
|
|
|
# lnd
|
|
|
|
services.lnd.enforceTor = true;
|
|
|
|
|
2020-04-07 13:47:38 -07:00
|
|
|
# liquidd
|
2020-04-07 13:47:35 -07:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
2020-04-07 13:47:43 -07:00
|
|
|
extraConfig = ''
|
|
|
|
mainchainrpcuser=${cfg.bitcoind.rpcuser}
|
|
|
|
mainchainrpcport=8332
|
|
|
|
'';
|
2020-04-07 13:47:35 -07:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
2020-04-07 13:47:42 -07:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 13:47:35 -07:00
|
|
|
enforceTor = true;
|
|
|
|
port = 7042;
|
|
|
|
};
|
2020-04-07 13:47:42 -07:00
|
|
|
services.tor.hiddenServices.liquidd = mkHiddenService { port = cfg.liquidd.port; };
|
2019-04-27 16:53:26 -07:00
|
|
|
|
2020-04-07 13:47:38 -07:00
|
|
|
# electrs
|
2020-04-07 13:47:35 -07:00
|
|
|
services.electrs = {
|
|
|
|
port = 50001;
|
|
|
|
enforceTor = true;
|
|
|
|
TLSProxy.enable = true;
|
|
|
|
TLSProxy.port = 50003;
|
|
|
|
};
|
2020-04-07 13:47:37 -07:00
|
|
|
services.tor.hiddenServices.electrs = mkHiddenService {
|
2020-04-07 13:47:42 -07:00
|
|
|
port = cfg.electrs.onionport;
|
2020-05-03 01:23:50 -07:00
|
|
|
toPort = if cfg.electrs.TLSProxy.enable then cfg.electrs.TLSProxy.port else cfg.electrs.port;
|
2019-02-25 08:00:50 -08:00
|
|
|
};
|
2020-04-07 13:47:35 -07:00
|
|
|
|
2020-04-07 13:47:38 -07:00
|
|
|
services.spark-wallet.onion-service = true;
|
|
|
|
|
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
|
|
|
|
2020-04-07 13:47:45 -07:00
|
|
|
environment.systemPackages = with pkgs; [
|
2019-04-06 07:50:30 -07:00
|
|
|
tor
|
|
|
|
jq
|
2019-05-17 17:00:35 -07:00
|
|
|
qrencode
|
2019-04-29 13:39:25 -07:00
|
|
|
];
|
2020-04-07 13:47:38 -07:00
|
|
|
|
2020-05-03 07:42:53 -07:00
|
|
|
# Create operator user which can access the node's services
|
|
|
|
users.users.${operatorName} = {
|
2020-04-07 13:47:38 -07:00
|
|
|
isNormalUser = true;
|
2020-04-08 14:30:10 -07:00
|
|
|
extraGroups = [
|
|
|
|
"systemd-journal"
|
|
|
|
cfg.bitcoind.group
|
|
|
|
]
|
2020-04-07 13:47:42 -07:00
|
|
|
++ (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-08 12:51:31 -07:00
|
|
|
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
|
2020-04-07 13:47:38 -07:00
|
|
|
};
|
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
2020-05-03 07:42:53 -07:00
|
|
|
services.onion-chef.access.${operatorName} = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "sshd" ];
|
2020-04-07 13:47:38 -07:00
|
|
|
|
|
|
|
security.sudo.configFile =
|
2020-04-07 13:47:42 -07:00
|
|
|
(optionalString cfg.lnd.enable ''
|
2020-05-03 07:42:53 -07:00
|
|
|
${operatorName} ALL=(lnd) NOPASSWD: ALL
|
2020-04-07 13:47:38 -07:00
|
|
|
'');
|
|
|
|
|
2020-04-08 12:51:31 -07:00
|
|
|
# Enable nixops ssh for operator (`nixops ssh operator@mynode`) on nixops-vbox deployments
|
|
|
|
systemd.services.get-vbox-nixops-client-key =
|
|
|
|
mkIf (builtins.elem ".vbox-nixops-client-key" config.services.openssh.authorizedKeysFiles) {
|
|
|
|
postStart = ''
|
2020-05-03 07:42:53 -07:00
|
|
|
cp "${config.users.users.root.home}/.vbox-nixops-client-key" "${config.users.users.${operatorName}.home}"
|
2020-04-08 12:51:31 -07:00
|
|
|
'';
|
|
|
|
};
|
2018-11-19 16:22:16 -08:00
|
|
|
};
|
2018-11-19 15:09:57 -08:00
|
|
|
}
|