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-06-04 02:30:17 -07:00
|
|
|
services.lnd.onionport = mkOption {
|
|
|
|
type = types.ints.u16;
|
|
|
|
default = 9735;
|
|
|
|
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;
|
|
|
|
|
2020-08-20 04:11:10 -07:00
|
|
|
nix-bitcoin.security.hideProcessInformation = true;
|
2020-07-27 10:26:45 -07:00
|
|
|
|
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
|
|
|
|
2020-05-29 03:53:35 -07:00
|
|
|
# netns-isolation
|
|
|
|
nix-bitcoin.netns-isolation = {
|
|
|
|
addressblock = 1;
|
|
|
|
};
|
|
|
|
|
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-08-04 07:12:20 -07:00
|
|
|
# higher rpcthread count due to reports that lightning implementations fail
|
|
|
|
# under high bitcoind rpc load
|
|
|
|
rpcthreads = 16;
|
2020-04-07 13:47:35 -07:00
|
|
|
};
|
2020-06-10 07:56:07 -07:00
|
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = cfg.bitcoind.port; toHost = cfg.bitcoind.bind; };
|
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
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 13:47:35 -07:00
|
|
|
enforceTor = true;
|
|
|
|
always-use-proxy = true;
|
|
|
|
};
|
2020-08-04 06:21:40 -07:00
|
|
|
services.tor.hiddenServices.clightning = mkIf cfg.clightning.enable (mkHiddenService {
|
|
|
|
port = cfg.clightning.onionport;
|
|
|
|
toHost = cfg.clightning.bind-addr;
|
|
|
|
toPort = cfg.clightning.bindport;
|
|
|
|
});
|
2018-12-01 12:48:58 -08:00
|
|
|
|
2019-08-05 01:44:38 -07:00
|
|
|
# lnd
|
2020-06-04 02:30:17 -07:00
|
|
|
services.lnd = {
|
|
|
|
tor-socks = cfg.tor.client.socksListenAddress;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
2020-08-04 00:45:02 -07:00
|
|
|
services.tor.hiddenServices.lnd = mkIf cfg.lnd.enable (mkHiddenService { port = cfg.lnd.onionport; toHost = cfg.lnd.listen; toPort = cfg.lnd.listenPort; });
|
2019-08-05 01:44:38 -07:00
|
|
|
|
2020-07-07 07:22:17 -07:00
|
|
|
# lightning-loop
|
|
|
|
services.lightning-loop = {
|
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
|
|
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 = ''
|
2020-06-22 05:10:54 -07:00
|
|
|
mainchainrpcuser=${config.services.bitcoind.rpc.users.public.name}
|
2020-04-07 13:47:43 -07:00
|
|
|
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-07-09 04:08:39 -07:00
|
|
|
services.tor.hiddenServices.liquidd = mkIf cfg.liquidd.enable (mkHiddenService { port = cfg.liquidd.port; toHost = cfg.liquidd.bind; });
|
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;
|
|
|
|
};
|
2020-08-21 13:35:58 -07:00
|
|
|
services.tor.hiddenServices.electrs = mkIf cfg.electrs.enable (mkHiddenService {
|
|
|
|
port = cfg.electrs.port; toHost = cfg.electrs.address;
|
|
|
|
});
|
2020-04-07 13:47:35 -07:00
|
|
|
|
2020-08-12 07:47:56 -07:00
|
|
|
# btcpayserver
|
|
|
|
# disable tor enforcement until btcpayserver can fetch rates over Tor
|
|
|
|
services.btcpayserver.enforceTor = false;
|
|
|
|
services.nbxplorer.enforceTor = true;
|
|
|
|
services.tor.hiddenServices.btcpayserver = mkIf cfg.btcpayserver.enable (mkHiddenService { port = 80; toPort = 23000; toHost = cfg.btcpayserver.bind; });
|
|
|
|
|
2020-06-10 07:41:13 -07:00
|
|
|
services.spark-wallet = {
|
|
|
|
onion-service = true;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
2020-04-07 13:47:38 -07:00
|
|
|
|
2020-06-10 07:43:03 -07:00
|
|
|
services.lightning-charge.enforceTor = true;
|
|
|
|
|
2020-06-10 07:44:50 -07:00
|
|
|
services.nanopos.enforceTor = true;
|
|
|
|
|
2020-06-10 07:46:30 -07:00
|
|
|
services.recurring-donations.enforceTor = true;
|
|
|
|
|
2020-04-07 13:47:38 -07:00
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
2020-06-11 04:39:17 -07:00
|
|
|
# Backups
|
|
|
|
services.backups = {
|
|
|
|
program = "duplicity";
|
|
|
|
frequency = "daily";
|
|
|
|
};
|
2020-04-07 13:47:38 -07:00
|
|
|
|
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"
|
2020-08-20 04:11:08 -07:00
|
|
|
"proc" # Enable full /proc access and systemd-status
|
2020-04-08 14:30:10 -07:00
|
|
|
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)
|
2020-04-23 09:18:47 -07:00
|
|
|
[ cfg.hardware-wallets.group ])
|
|
|
|
++ (optionals cfg.joinmarket.enable [ cfg.joinmarket.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
|
|
|
};
|
2020-08-21 13:36:01 -07:00
|
|
|
nix-bitcoin.netns-isolation.allowedUser = operatorName;
|
2020-04-07 13:47:38 -07:00
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
2020-08-26 02:21:54 -07:00
|
|
|
services.onion-chef.access.${operatorName} = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "btcpayserver" "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-23 09:18:47 -07:00
|
|
|
'') +
|
|
|
|
(optionalString cfg.joinmarket.enable ''
|
|
|
|
${operatorName} ALL=(${cfg.joinmarket.user}) 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
|
|
|
}
|