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

62 lines
1.4 KiB
Nix
Raw Normal View History

{ 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;
in {
imports = [
../modules.nix
./enable-tor.nix
];
2018-11-22 10:32:26 -08:00
options = {
# Used by ../versioning.nix
nix-bitcoin.secure-node-preset-enabled = {};
};
config = {
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 04:24:29 -08:00
environment.systemPackages = with pkgs; [
jq
];
2022-07-14 14:45:27 -07:00
# Add a SSH onion service
2021-08-04 15:49:00 -07:00
services.tor.relay.onionServices.sshd = nbLib.mkOnionService { port = 22; };
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 = {
# 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;
2021-01-14 04:24:29 -08:00
services.backups.frequency = "daily";
2021-01-14 04:24:29 -08:00
# operator
2020-09-28 04:09:03 -07:00
nix-bitcoin.operator.enable = true;
users.users.${operatorName} = {
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
};
2018-11-19 16:22:16 -08:00
};
}