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;
|
2021-02-03 21:44:42 +00:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2020-09-28 11:09:03 +00:00
|
|
|
operatorName = config.nix-bitcoin.operator.name;
|
2018-11-19 23:09:57 +00:00
|
|
|
in {
|
2020-05-03 14:42:53 +00:00
|
|
|
imports = [
|
|
|
|
../modules.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
|
|
|
|
2021-10-31 13:59:41 +00:00
|
|
|
options = {
|
|
|
|
# Used by ../versioning.nix
|
|
|
|
nix-bitcoin.secure-node-preset-enabled = {};
|
|
|
|
};
|
|
|
|
|
2020-04-07 20:47:33 +00:00
|
|
|
config = {
|
2019-01-01 19:16:24 +00:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2021-08-04 22:49:01 +00:00
|
|
|
nix-bitcoin.security.dbusHideProcessInformation = true;
|
2020-07-27 17:26:45 +00:00
|
|
|
|
2021-01-30 22:08:43 +00:00
|
|
|
# Use doas instead of sudo
|
|
|
|
security.doas.enable = true;
|
|
|
|
security.sudo.enable = false;
|
|
|
|
|
2021-01-14 12:24:29 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
jq
|
|
|
|
];
|
|
|
|
|
2022-07-14 21:45:27 +00:00
|
|
|
# Add a SSH onion service
|
2021-08-04 22:49:00 +00:00
|
|
|
services.tor.relay.onionServices.sshd = nbLib.mkOnionService { port = 22; };
|
2021-01-14 12:24:18 +00:00
|
|
|
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
|
2018-12-27 21:22:52 +00:00
|
|
|
|
2020-04-07 20:47:35 +00:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
|
|
|
dbCache = 1000;
|
|
|
|
};
|
2020-07-07 14:22:17 +00:00
|
|
|
|
2020-04-07 20:47:35 +00:00
|
|
|
services.liquidd = {
|
2021-10-31 10:45:06 +00: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 20:47:35 +00:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
};
|
2020-08-12 14:47:56 +00:00
|
|
|
|
2021-01-14 12:24:29 +00:00
|
|
|
nix-bitcoin.nodeinfo.enable = true;
|
2020-04-07 20:47:38 +00:00
|
|
|
|
2021-01-14 12:24:29 +00:00
|
|
|
services.backups.frequency = "daily";
|
2020-04-07 20:47:38 +00:00
|
|
|
|
2021-01-14 12:24:29 +00:00
|
|
|
# operator
|
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
|
|
|
};
|
2018-11-20 00:22:16 +00:00
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
}
|