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-09-28 04:09:03 -07:00
|
|
|
operatorName = config.nix-bitcoin.operator.name;
|
2020-05-03 07:42:53 -07:00
|
|
|
|
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
|
2021-01-14 04:24:18 -08:00
|
|
|
./enable-tor.nix
|
2020-05-03 07:42:53 -07:00
|
|
|
];
|
2018-11-22 10:32:26 -08: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
|
|
|
|
2021-01-14 04:24:18 -08:00
|
|
|
services.tor.hiddenServices.sshd = mkHiddenService { port = 22; };
|
|
|
|
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
|
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:35 -07:00
|
|
|
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
|
2021-01-14 04:24:02 -08:00
|
|
|
rpc.threads = 16;
|
2020-04-07 13:47:35 -07:00
|
|
|
};
|
2020-07-07 07:22:17 -07:00
|
|
|
|
2020-04-07 13:47:38 -07:00
|
|
|
# liquidd
|
2020-04-07 13:47:35 -07:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
};
|
2020-08-12 07:47:56 -07:00
|
|
|
|
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-09-28 04:09:03 -07:00
|
|
|
nix-bitcoin.operator.enable = true;
|
2020-05-03 07:42:53 -07:00
|
|
|
users.users.${operatorName} = {
|
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-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
|
|
|
}
|