196 lines
5.8 KiB
Nix
196 lines
5.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services;
|
|
|
|
operatorName = config.nix-bitcoin.operatorName;
|
|
|
|
mkHiddenService = map: {
|
|
map = [ map ];
|
|
version = 3;
|
|
};
|
|
in {
|
|
imports = [
|
|
../modules.nix
|
|
../nodeinfo.nix
|
|
../nix-bitcoin-webindex.nix
|
|
];
|
|
|
|
options = {
|
|
services.clightning.onionport = mkOption {
|
|
type = types.port;
|
|
default = 9735;
|
|
description = "Port on which to listen for tor client connections.";
|
|
};
|
|
services.lnd.onionport = mkOption {
|
|
type = types.ints.u16;
|
|
default = 9735;
|
|
description = "Port on which to listen for tor client connections.";
|
|
};
|
|
nix-bitcoin.operatorName = mkOption {
|
|
type = types.str;
|
|
default = "operator";
|
|
description = "Less-privileged user's name.";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
# For backwards compatibility only
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
nix-bitcoin.security.hideProcessInformation = true;
|
|
|
|
# Tor
|
|
services.tor = {
|
|
enable = true;
|
|
client.enable = true;
|
|
# LND uses ControlPort to create onion services
|
|
controlPort = mkIf cfg.lnd.enable 9051;
|
|
|
|
hiddenServices.sshd = mkHiddenService { port = 22; };
|
|
};
|
|
|
|
# netns-isolation
|
|
nix-bitcoin.netns-isolation = {
|
|
addressblock = 1;
|
|
};
|
|
|
|
# bitcoind
|
|
services.bitcoind = {
|
|
enable = true;
|
|
listen = true;
|
|
dataDirReadableByGroup = mkIf cfg.electrs.high-memory true;
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
enforceTor = true;
|
|
port = 8333;
|
|
assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
|
addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
|
discover = false;
|
|
addresstype = "bech32";
|
|
dbCache = 1000;
|
|
# higher rpcthread count due to reports that lightning implementations fail
|
|
# under high bitcoind rpc load
|
|
rpcthreads = 16;
|
|
};
|
|
services.tor.hiddenServices.bitcoind = mkHiddenService { port = cfg.bitcoind.port; toHost = cfg.bitcoind.bind; };
|
|
|
|
# clightning
|
|
services.clightning = {
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
enforceTor = true;
|
|
always-use-proxy = true;
|
|
};
|
|
services.tor.hiddenServices.clightning = mkIf cfg.clightning.enable (mkHiddenService {
|
|
port = cfg.clightning.onionport;
|
|
toHost = cfg.clightning.bind-addr;
|
|
toPort = cfg.clightning.bindport;
|
|
});
|
|
|
|
# lnd
|
|
services.lnd = {
|
|
tor-socks = cfg.tor.client.socksListenAddress;
|
|
enforceTor = true;
|
|
};
|
|
services.tor.hiddenServices.lnd = mkIf cfg.lnd.enable (mkHiddenService { port = cfg.lnd.onionport; toHost = cfg.lnd.listen; toPort = cfg.lnd.listenPort; });
|
|
|
|
# lightning-loop
|
|
services.lightning-loop = {
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
enforceTor = true;
|
|
};
|
|
|
|
# liquidd
|
|
services.liquidd = {
|
|
rpcuser = "liquidrpc";
|
|
prune = 1000;
|
|
extraConfig = ''
|
|
mainchainrpcuser=${config.services.bitcoind.rpc.users.public.name}
|
|
mainchainrpcport=8332
|
|
'';
|
|
validatepegin = true;
|
|
listen = true;
|
|
proxy = cfg.tor.client.socksListenAddress;
|
|
enforceTor = true;
|
|
port = 7042;
|
|
};
|
|
services.tor.hiddenServices.liquidd = mkIf cfg.liquidd.enable (mkHiddenService { port = cfg.liquidd.port; toHost = cfg.liquidd.bind; });
|
|
|
|
# electrs
|
|
services.electrs = {
|
|
port = 50001;
|
|
enforceTor = true;
|
|
};
|
|
services.tor.hiddenServices.electrs = mkIf cfg.electrs.enable (mkHiddenService {
|
|
port = cfg.electrs.port; toHost = cfg.electrs.address;
|
|
});
|
|
|
|
# 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; });
|
|
|
|
services.spark-wallet = {
|
|
onion-service = true;
|
|
enforceTor = true;
|
|
};
|
|
|
|
services.lightning-charge.enforceTor = true;
|
|
|
|
services.nanopos.enforceTor = true;
|
|
|
|
services.recurring-donations.enforceTor = true;
|
|
|
|
services.nix-bitcoin-webindex.enforceTor = true;
|
|
|
|
# Backups
|
|
services.backups = {
|
|
program = "duplicity";
|
|
frequency = "daily";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
tor
|
|
jq
|
|
qrencode
|
|
];
|
|
|
|
# Create operator user which can access the node's services
|
|
users.users.${operatorName} = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"systemd-journal"
|
|
"proc" # Enable full /proc access and systemd-status
|
|
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 ]);
|
|
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
|
|
};
|
|
nix-bitcoin.netns-isolation.allowedUser = operatorName;
|
|
# Give operator access to onion hostnames
|
|
services.onion-chef.enable = true;
|
|
services.onion-chef.access.${operatorName} = [ "bitcoind" "clightning" "nginx" "liquidd" "spark-wallet" "electrs" "btcpayserver" "sshd" ];
|
|
|
|
security.sudo.configFile =
|
|
(optionalString cfg.lnd.enable ''
|
|
${operatorName} ALL=(lnd) NOPASSWD: ALL
|
|
'');
|
|
|
|
# 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 = ''
|
|
cp "${config.users.users.root.home}/.vbox-nixops-client-key" "${config.users.users.${operatorName}.home}"
|
|
'';
|
|
};
|
|
};
|
|
}
|