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