2018-11-19 23:09:57 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2020-04-07 22:47:42 +02:00
|
|
|
cfg = config.services;
|
2021-02-03 22:44:42 +01:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2020-09-28 13:09:03 +02:00
|
|
|
operatorName = config.nix-bitcoin.operator.name;
|
2018-11-19 23:09:57 +00:00
|
|
|
in {
|
2020-05-03 16:42:53 +02:00
|
|
|
imports = [
|
|
|
|
../modules.nix
|
2021-01-14 13:24:18 +01:00
|
|
|
./enable-tor.nix
|
2020-05-03 16:42:53 +02: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 22:47:33 +02:00
|
|
|
config = {
|
|
|
|
# For backwards compatibility only
|
2020-01-12 20:52:39 +01:00
|
|
|
nix-bitcoin.secretsDir = mkDefault "/secrets";
|
|
|
|
|
2019-01-01 19:16:24 +00:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2021-08-05 00:49:01 +02:00
|
|
|
nix-bitcoin.security.dbusHideProcessInformation = true;
|
2020-07-27 17:26:45 +00:00
|
|
|
|
2021-01-30 23:08:43 +01:00
|
|
|
# Use doas instead of sudo
|
|
|
|
security.doas.enable = true;
|
|
|
|
security.sudo.enable = false;
|
|
|
|
|
2021-01-14 13:24:29 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
jq
|
|
|
|
];
|
|
|
|
|
|
|
|
# sshd
|
2021-08-05 00:49:00 +02:00
|
|
|
services.tor.relay.onionServices.sshd = nbLib.mkOnionService { port = 22; };
|
2021-01-14 13:24:18 +01:00
|
|
|
nix-bitcoin.onionAddresses.access.${operatorName} = [ "sshd" ];
|
2018-12-27 21:22:52 +00:00
|
|
|
|
2020-04-07 22:47:35 +02:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
|
|
|
listen = true;
|
|
|
|
dbCache = 1000;
|
|
|
|
};
|
2020-07-07 14:22:17 +00:00
|
|
|
|
2020-04-07 22:47:35 +02: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 22:47:35 +02:00
|
|
|
validatepegin = true;
|
|
|
|
listen = true;
|
|
|
|
};
|
2020-08-12 14:47:56 +00:00
|
|
|
|
2021-01-14 13:24:29 +01:00
|
|
|
nix-bitcoin.nodeinfo.enable = true;
|
2020-04-07 22:47:38 +02:00
|
|
|
|
2021-01-14 13:24:29 +01:00
|
|
|
services.backups.frequency = "daily";
|
2020-04-07 22:47:38 +02:00
|
|
|
|
2021-01-14 13:24:29 +01:00
|
|
|
# operator
|
2020-09-28 13:09:03 +02:00
|
|
|
nix-bitcoin.operator.enable = true;
|
2020-05-03 16:42:53 +02:00
|
|
|
users.users.${operatorName} = {
|
2020-04-08 21:51:31 +02:00
|
|
|
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
|
2020-04-07 22:47:38 +02:00
|
|
|
};
|
2018-11-20 00:22:16 +00:00
|
|
|
};
|
2018-11-19 23:09:57 +00:00
|
|
|
}
|