2018-11-19 23:09:57 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 20:47:42 +00:00
|
|
|
cfg = config.services;
|
|
|
|
|
2020-05-03 14:42:53 +00:00
|
|
|
operatorName = config.nix-bitcoin.operatorName;
|
|
|
|
|
2020-04-07 20:47:37 +00:00
|
|
|
mkHiddenService = map: {
|
|
|
|
map = [ map ];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
in {
|
2020-05-03 14:42:53 +00:00
|
|
|
imports = [
|
|
|
|
../modules.nix
|
|
|
|
../nodeinfo.nix
|
|
|
|
../nix-bitcoin-webindex.nix
|
|
|
|
];
|
2018-11-22 18:32:26 +00:00
|
|
|
|
2020-04-07 20:47:40 +00:00
|
|
|
options = {
|
2020-04-07 20:47:41 +00:00
|
|
|
services.clightning.onionport = mkOption {
|
2020-06-02 15:09:52 +00:00
|
|
|
type = types.port;
|
2020-04-07 20:47:41 +00:00
|
|
|
default = 9735;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
2020-06-04 09:30:17 +00:00
|
|
|
services.lnd.onionport = mkOption {
|
|
|
|
type = types.ints.u16;
|
|
|
|
default = 9735;
|
|
|
|
description = "Port on which to listen for tor client connections.";
|
|
|
|
};
|
2020-05-03 14:42:53 +00:00
|
|
|
nix-bitcoin.operatorName = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "operator";
|
|
|
|
description = "Less-privileged user's name.";
|
|
|
|
};
|
2020-04-07 20:47:40 +00:00
|
|
|
};
|
|
|
|
|
2020-04-07 20:47:33 +00:00
|
|
|
config = {
|
|
|
|
# For backwards compatibility only
|
2020-01-12 19:52:39 +00:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
2019-01-01 19:16:24 +00:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2020-08-20 11:11:10 +00:00
|
|
|
nix-bitcoin.security.hideProcessInformation = true;
|
2020-07-27 17:26:45 +00:00
|
|
|
|
2018-11-22 18:32:26 +00:00
|
|
|
# Tor
|
2020-04-07 20:47:35 +00:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
# LND uses ControlPort to create onion services
|
2020-04-07 20:47:42 +00:00
|
|
|
controlPort = mkIf cfg.lnd.enable 9051;
|
2018-11-22 18:32:26 +00:00
|
|
|
|
2020-04-07 20:47:37 +00:00
|
|
|
hiddenServices.sshd = mkHiddenService { port = 22; };
|
2019-01-01 19:16:24 +00:00
|
|
|
};
|
2018-12-27 21:22:52 +00:00
|
|
|
|
2020-05-29 10:53:35 +00:00
|
|
|
# netns-isolation
|
|
|
|
nix-bitcoin.netns-isolation = {
|
|
|
|
addressblock = 1;
|
|
|
|
};
|
|
|
|
|
2018-11-23 00:46:56 +00:00
|
|
|
# bitcoind
|
2020-04-07 20:47:35 +00:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
2020-04-24 14:21:12 +00:00
|
|
|
dataDirReadableByGroup = mkIf cfg.electrs.high-memory true;
|
2020-04-07 20:47:42 +00:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 20:47:35 +00:00
|
|
|
enforceTor = true;
|
|
|
|
port = 8333;
|
|
|
|
assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
|
|
|
addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
|
|
|
discover = false;
|
|
|
|
addresstype = "bech32";
|
|
|
|
dbCache = 1000;
|
2020-08-04 14:12:20 +00:00
|
|
|
# higher rpcthread count due to reports that lightning implementations fail
|
|
|
|
# under high bitcoind rpc load
|
|
|
|
rpcthreads = 16;
|
2020-04-07 20:47:35 +00:00
|
|
|
};
|
2020-06-10 14:56:07 +00:00
|
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = cfg.bitcoind.port; toHost = cfg.bitcoind.bind; };
|
2018-11-22 18:32:26 +00:00
|
|
|
|
|
|
|
# clightning
|
2020-04-07 20:47:35 +00:00
|
|
|
services.clightning = {
|
2020-04-07 20:47:42 +00:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 20:47:35 +00:00
|
|
|
enforceTor = true;
|
|
|
|
always-use-proxy = true;
|
|
|
|
};
|
2020-08-04 13:21:40 +00: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 20:48:58 +00:00
|
|
|
|
2019-08-05 08:44:38 +00:00
|
|
|
# lnd
|
2020-06-04 09:30:17 +00:00
|
|
|
services.lnd = {
|
|
|
|
tor-socks = cfg.tor.client.socksListenAddress;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
2020-08-04 07:45:02 +00: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 08:44:38 +00:00
|
|
|
|
2020-07-07 14:22:17 +00:00
|
|
|
# lightning-loop
|
|
|
|
services.lightning-loop = {
|
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
|
|
|
|
2020-04-07 20:47:38 +00:00
|
|
|
# liquidd
|
2020-04-07 20:47:35 +00:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
2020-04-07 20:47:43 +00:00
|
|
|
extraConfig = ''
|
2020-06-22 12:10:54 +00:00
|
|
|
mainchainrpcuser=${config.services.bitcoind.rpc.users.public.name}
|
2020-04-07 20:47:43 +00:00
|
|
|
mainchainrpcport=8332
|
|
|
|
'';
|
2020-04-07 20:47:35 +00:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
2020-04-07 20:47:42 +00:00
|
|
|
proxy = cfg.tor.client.socksListenAddress;
|
2020-04-07 20:47:35 +00:00
|
|
|
enforceTor = true;
|
|
|
|
port = 7042;
|
|
|
|
};
|
2020-07-09 11:08:39 +00:00
|
|
|
services.tor.hiddenServices.liquidd = mkIf cfg.liquidd.enable (mkHiddenService { port = cfg.liquidd.port; toHost = cfg.liquidd.bind; });
|
2019-04-27 23:53:26 +00:00
|
|
|
|
2020-04-07 20:47:38 +00:00
|
|
|
# electrs
|
2020-04-07 20:47:35 +00:00
|
|
|
services.electrs = {
|
|
|
|
port = 50001;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
2020-08-21 20:35:58 +00:00
|
|
|
services.tor.hiddenServices.electrs = mkIf cfg.electrs.enable (mkHiddenService {
|
|
|
|
port = cfg.electrs.port; toHost = cfg.electrs.address;
|
|
|
|
});
|
2020-04-07 20:47:35 +00:00
|
|
|
|
2020-06-10 14:41:13 +00:00
|
|
|
services.spark-wallet = {
|
|
|
|
onion-service = true;
|
|
|
|
enforceTor = true;
|
|
|
|
};
|
2020-04-07 20:47:38 +00:00
|
|
|
|
2020-06-10 14:43:03 +00:00
|
|
|
services.lightning-charge.enforceTor = true;
|
|
|
|
|
2020-06-10 14:44:50 +00:00
|
|
|
services.nanopos.enforceTor = true;
|
|
|
|
|
2020-06-10 14:46:30 +00:00
|
|
|
services.recurring-donations.enforceTor = true;
|
|
|
|
|
2020-04-07 20:47:38 +00:00
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
|
2020-06-11 11:39:17 +00:00
|
|
|
# Backups
|
|
|
|
services.backups = {
|
|
|
|
program = "duplicity";
|
|
|
|
frequency = "daily";
|
|
|
|
};
|
2020-04-07 20:47:38 +00:00
|
|
|
|
2020-04-07 20:47:45 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2019-04-06 14:50:30 +00:00
|
|
|
tor
|
|
|
|
jq
|
2019-05-18 00:00:35 +00:00
|
|
|
qrencode
|
2019-04-29 20:39:25 +00:00
|
|
|
];
|
2020-04-07 20:47:38 +00:00
|
|
|
|
2020-05-03 14:42:53 +00:00
|
|
|
# Create operator user which can access the node's services
|
|
|
|
users.users.${operatorName} = {
|
2020-04-07 20:47:38 +00:00
|
|
|
isNormalUser = true;
|
2020-04-08 21:30:10 +00:00
|
|
|
extraGroups = [
|
|
|
|
"systemd-journal"
|
2020-08-20 11:11:08 +00:00
|
|
|
"proc" # Enable full /proc access and systemd-status
|
2020-04-08 21:30:10 +00:00
|
|
|
cfg.bitcoind.group
|
|
|
|
]
|
2020-04-07 20:47:42 +00: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 19:51:31 +00:00
|
|
|
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
|
2020-04-07 20:47:38 +00:00
|
|
|
};
|
2020-08-21 20:36:01 +00:00
|
|
|
nix-bitcoin.netns-isolation.allowedUser = operatorName;
|
2020-04-07 20:47:38 +00:00
|
|
|
# Give operator access to onion hostnames
|
|
|
|
services.onion-chef.enable = true;
|
2020-05-03 14:42:53 +00:00
|
|
|
services.onion-chef.access.${operatorName} = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "sshd" ];
|
2020-04-07 20:47:38 +00:00
|
|
|
|
|
|
|
security.sudo.configFile =
|
2020-04-07 20:47:42 +00:00
|
|
|
(optionalString cfg.lnd.enable ''
|
2020-05-03 14:42:53 +00:00
|
|
|
${operatorName} ALL=(lnd) NOPASSWD: ALL
|
2020-04-07 20:47:38 +00:00
|
|
|
'');
|
|
|
|
|
2020-04-08 19:51:31 +00: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 14:42:53 +00:00
|
|
|
cp "${config.users.users.root.home}/.vbox-nixops-client-key" "${config.users.users.${operatorName}.home}"
|
2020-04-08 19:51:31 +00:00
|
|
|
'';
|
|
|
|
};
|
2018-11-20 00:22:16 +00:00
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
}
|