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