nix-bitcoin/modules/presets/secure-node.nix

65 lines
1.5 KiB
Nix
Raw Normal View History

{ 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;
in {
imports = [
../modules.nix
./enable-tor.nix
];
2018-11-22 18:32:26 +00:00
options = {
# Used by ../versioning.nix
nix-bitcoin.secure-node-preset-enabled = {};
};
config = {
# For backwards compatibility only
nix-bitcoin.secretsDir = mkDefault "/secrets";
networking.firewall.enable = true;
nix-bitcoin.security.dbusHideProcessInformation = true;
# 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; };
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 = {
# 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;
2021-01-14 13:24:29 +01:00
services.backups.frequency = "daily";
2021-01-14 13:24:29 +01:00
# operator
2020-09-28 13:09:03 +02:00
nix-bitcoin.operator.enable = true;
users.users.${operatorName} = {
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
};
2018-11-20 00:22:16 +00:00
};
}