2018-11-20 02:09:57 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 23:47:42 +03:00
|
|
|
cfg = config.services;
|
|
|
|
|
2020-09-28 14:09:03 +03:00
|
|
|
operatorName = config.nix-bitcoin.operator.name;
|
2020-05-03 17:42:53 +03:00
|
|
|
|
2020-04-07 23:47:37 +03:00
|
|
|
mkHiddenService = map: {
|
|
|
|
map = [ map ];
|
|
|
|
version = 3;
|
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
in {
|
2020-05-03 17:42:53 +03:00
|
|
|
imports = [
|
|
|
|
../modules.nix
|
|
|
|
../nodeinfo.nix
|
2021-01-14 15:24:18 +03:00
|
|
|
./enable-tor.nix
|
2020-05-03 17:42:53 +03:00
|
|
|
];
|
2018-11-22 21:32:26 +03:00
|
|
|
|
2020-04-07 23:47:33 +03:00
|
|
|
config = {
|
|
|
|
# For backwards compatibility only
|
2020-01-12 22:52:39 +03:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
2019-01-01 22:16:24 +03:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2020-08-20 14:11:10 +03:00
|
|
|
nix-bitcoin.security.hideProcessInformation = true;
|
2020-07-27 20:26:45 +03:00
|
|
|
|
2021-01-14 15:24:18 +03:00
|
|
|
services.tor.hiddenServices.sshd = mkHiddenService { port = 22; };
|
|
|
|
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
|
2018-12-28 00:22:52 +03:00
|
|
|
|
2018-11-23 03:46:56 +03:00
|
|
|
# bitcoind
|
2020-04-07 23:47:35 +03:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
2020-04-24 17:21:12 +03:00
|
|
|
dataDirReadableByGroup = mkIf cfg.electrs.high-memory true;
|
2020-04-07 23:47:35 +03:00
|
|
|
assumevalid = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
|
|
|
addnodes = [ "ecoc5q34tmbq54wl.onion" ];
|
|
|
|
discover = false;
|
|
|
|
addresstype = "bech32";
|
|
|
|
dbCache = 1000;
|
2020-08-04 17:12:20 +03:00
|
|
|
# higher rpcthread count due to reports that lightning implementations fail
|
|
|
|
# under high bitcoind rpc load
|
2021-01-14 15:24:02 +03:00
|
|
|
rpc.threads = 16;
|
2020-04-07 23:47:35 +03:00
|
|
|
};
|
2020-07-07 17:22:17 +03:00
|
|
|
|
2020-04-07 23:47:38 +03:00
|
|
|
# liquidd
|
2020-04-07 23:47:35 +03:00
|
|
|
services.liquidd = {
|
|
|
|
rpcuser = "liquidrpc";
|
|
|
|
prune = 1000;
|
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
};
|
2020-08-12 17:47:56 +03:00
|
|
|
|
2020-06-11 14:39:17 +03:00
|
|
|
# Backups
|
|
|
|
services.backups = {
|
|
|
|
program = "duplicity";
|
|
|
|
frequency = "daily";
|
|
|
|
};
|
2020-04-07 23:47:38 +03:00
|
|
|
|
2020-04-07 23:47:45 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
2019-04-06 17:50:30 +03:00
|
|
|
tor
|
|
|
|
jq
|
2019-05-18 03:00:35 +03:00
|
|
|
qrencode
|
2019-04-29 23:39:25 +03:00
|
|
|
];
|
2020-04-07 23:47:38 +03:00
|
|
|
|
2020-09-28 14:09:03 +03:00
|
|
|
nix-bitcoin.operator.enable = true;
|
2020-05-03 17:42:53 +03:00
|
|
|
users.users.${operatorName} = {
|
2020-04-08 22:51:31 +03:00
|
|
|
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
|
2020-04-07 23:47:38 +03:00
|
|
|
};
|
2020-04-08 22:51:31 +03: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 17:42:53 +03:00
|
|
|
cp "${config.users.users.root.home}/.vbox-nixops-client-key" "${config.users.users.${operatorName}.home}"
|
2020-04-08 22:51:31 +03:00
|
|
|
'';
|
|
|
|
};
|
2018-11-20 03:22:16 +03:00
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
}
|