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;
|
2021-02-04 00:44:42 +03:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2020-09-28 14:09:03 +03:00
|
|
|
operatorName = config.nix-bitcoin.operator.name;
|
2018-11-20 02:09:57 +03:00
|
|
|
in {
|
2020-05-03 17:42:53 +03:00
|
|
|
imports = [
|
|
|
|
../modules.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
|
|
|
|
2021-10-31 16:59:41 +03:00
|
|
|
options = {
|
|
|
|
# Used by ../versioning.nix
|
|
|
|
nix-bitcoin.secure-node-preset-enabled = {};
|
|
|
|
};
|
|
|
|
|
2020-04-07 23:47:33 +03:00
|
|
|
config = {
|
2019-01-01 22:16:24 +03:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2021-08-05 01:49:01 +03:00
|
|
|
nix-bitcoin.security.dbusHideProcessInformation = true;
|
2020-07-27 20:26:45 +03:00
|
|
|
|
2021-01-31 01:08:43 +03:00
|
|
|
# Use doas instead of sudo
|
|
|
|
security.doas.enable = true;
|
|
|
|
security.sudo.enable = false;
|
|
|
|
|
2021-01-14 15:24:29 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
jq
|
|
|
|
];
|
|
|
|
|
|
|
|
# sshd
|
2021-08-05 01:49:00 +03:00
|
|
|
services.tor.relay.onionServices.sshd = nbLib.mkOnionService { port = 22; };
|
2021-01-14 15:24:18 +03:00
|
|
|
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
|
2018-12-28 00:22:52 +03:00
|
|
|
|
2020-04-07 23:47:35 +03:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
|
|
|
dbCache = 1000;
|
|
|
|
};
|
2020-07-07 17:22:17 +03:00
|
|
|
|
2020-04-07 23:47:35 +03:00
|
|
|
services.liquidd = {
|
2021-10-31 13:45:06 +03:00
|
|
|
# Enable `validatepegin` to verify that a transaction sending BTC into
|
|
|
|
# Liquid exists on Bitcoin. Without it, a malicious liquid federation can
|
|
|
|
# make the node accept a sidechain that is not fully backed.
|
2020-04-07 23:47:35 +03:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
};
|
2020-08-12 17:47:56 +03:00
|
|
|
|
2021-01-14 15:24:29 +03:00
|
|
|
nix-bitcoin.nodeinfo.enable = true;
|
2020-04-07 23:47:38 +03:00
|
|
|
|
2021-01-14 15:24:29 +03:00
|
|
|
services.backups.frequency = "daily";
|
2020-04-07 23:47:38 +03:00
|
|
|
|
2021-01-14 15:24:29 +03:00
|
|
|
# operator
|
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
|
|
|
};
|
2018-11-20 03:22:16 +03:00
|
|
|
};
|
2018-11-20 02:09:57 +03:00
|
|
|
}
|