2019-01-02 13:40:53 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
options.services.electrs = {
|
2021-12-14 10:51:23 -08:00
|
|
|
enable = mkEnableOption "electrs, an Electrum server implemented in Rust";
|
2021-01-14 04:24:06 -08:00
|
|
|
address = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "127.0.0.1";
|
|
|
|
description = "Address to listen for RPC connections.";
|
|
|
|
};
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 50001;
|
2021-11-26 06:13:29 -08:00
|
|
|
description = "Port to listen for RPC connections.";
|
2021-01-14 04:24:06 -08:00
|
|
|
};
|
2019-01-02 13:40:53 -08:00
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/electrs";
|
|
|
|
description = "The data directory for electrs.";
|
|
|
|
};
|
2020-09-27 03:43:16 -07:00
|
|
|
monitoringPort = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 4224;
|
|
|
|
description = "Prometheus monitoring port.";
|
|
|
|
};
|
2020-03-04 09:09:03 -08:00
|
|
|
extraArgs = mkOption {
|
|
|
|
type = types.separatedString " ";
|
|
|
|
default = "";
|
|
|
|
description = "Extra command line arguments passed to electrs.";
|
|
|
|
};
|
2021-09-13 04:40:48 -07:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "electrs";
|
|
|
|
description = "The user as which to run electrs.";
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.user;
|
|
|
|
description = "The group as which to run electrs.";
|
|
|
|
};
|
2021-11-28 12:24:49 -08:00
|
|
|
tor.enforce = nbLib.tor.enforce;
|
2019-01-02 13:40:53 -08:00
|
|
|
};
|
|
|
|
|
2021-09-13 04:40:47 -07:00
|
|
|
cfg = config.services.electrs;
|
|
|
|
nbLib = config.nix-bitcoin.lib;
|
|
|
|
secretsDir = config.nix-bitcoin.secretsDir;
|
|
|
|
bitcoind = config.services.bitcoind;
|
|
|
|
in {
|
|
|
|
inherit options;
|
|
|
|
|
2020-05-10 07:13:20 -07:00
|
|
|
config = mkIf cfg.enable {
|
2020-06-15 03:34:11 -07:00
|
|
|
assertions = [
|
2020-09-27 03:43:14 -07:00
|
|
|
{ assertion = bitcoind.prune == 0;
|
2020-06-15 03:34:11 -07:00
|
|
|
message = "electrs does not support bitcoind pruning.";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2021-10-05 07:52:02 -07:00
|
|
|
services.bitcoind = {
|
|
|
|
enable = true;
|
2021-10-29 08:56:57 -07:00
|
|
|
listenWhitelisted = true;
|
2021-10-05 07:52:02 -07:00
|
|
|
};
|
2020-10-18 05:49:20 -07:00
|
|
|
|
2020-05-06 03:43:57 -07:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d '${cfg.dataDir}' 0770 ${cfg.user} ${cfg.group} - -"
|
|
|
|
];
|
|
|
|
|
2019-01-02 13:40:53 -08:00
|
|
|
systemd.services.electrs = {
|
2019-01-04 01:47:06 -08:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2020-03-04 09:08:49 -08:00
|
|
|
requires = [ "bitcoind.service" ];
|
2019-01-02 13:40:53 -08:00
|
|
|
after = [ "bitcoind.service" ];
|
|
|
|
preStart = ''
|
2021-02-23 02:49:59 -08:00
|
|
|
echo "auth = \"${bitcoind.rpc.users.public.name}:$(cat ${secretsDir}/bitcoin-rpcpassword-public)\"" \
|
2020-03-04 09:08:57 -08:00
|
|
|
> electrs.toml
|
2020-03-04 09:08:51 -08:00
|
|
|
'';
|
2021-02-03 13:44:41 -08:00
|
|
|
serviceConfig = nbLib.defaultHardening // {
|
2021-10-05 07:52:02 -07:00
|
|
|
# electrs only uses the working directory for reading electrs.toml
|
2021-11-26 06:13:36 -08:00
|
|
|
WorkingDirectory = cfg.dataDir;
|
2020-03-04 09:08:57 -08:00
|
|
|
ExecStart = ''
|
2021-11-28 09:34:10 -08:00
|
|
|
${config.nix-bitcoin.pkgs.electrs}/bin/electrs \
|
|
|
|
--log-filters=INFO \
|
2020-10-16 08:43:09 -07:00
|
|
|
--network=${bitcoind.makeNetworkName "bitcoin" "regtest"} \
|
2020-09-27 03:43:13 -07:00
|
|
|
--db-dir='${cfg.dataDir}' \
|
2020-09-27 03:43:14 -07:00
|
|
|
--daemon-dir='${bitcoind.dataDir}' \
|
2020-09-27 03:43:16 -07:00
|
|
|
--electrum-rpc-addr=${cfg.address}:${toString cfg.port} \
|
|
|
|
--monitoring-addr=${cfg.address}:${toString cfg.monitoringPort} \
|
2021-10-01 02:51:57 -07:00
|
|
|
--daemon-rpc-addr=${nbLib.addressWithPort bitcoind.rpc.address bitcoind.rpc.port} \
|
2021-10-29 08:56:57 -07:00
|
|
|
--daemon-p2p-addr=${nbLib.addressWithPort bitcoind.address bitcoind.whitelistedPort} \
|
2020-09-27 03:43:13 -07:00
|
|
|
${cfg.extraArgs}
|
2020-03-04 09:08:57 -08:00
|
|
|
'';
|
2020-03-04 09:09:00 -08:00
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
2019-01-02 13:40:53 -08:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
2022-05-07 11:34:21 -07:00
|
|
|
ReadWritePaths = [ cfg.dataDir ];
|
2021-11-28 12:24:49 -08:00
|
|
|
} // nbLib.allowedIPAddresses cfg.tor.enforce;
|
2019-01-02 13:40:53 -08:00
|
|
|
};
|
2019-04-26 02:09:55 -07:00
|
|
|
|
2020-03-04 09:08:49 -08:00
|
|
|
users.users.${cfg.user} = {
|
2021-08-04 15:48:59 -07:00
|
|
|
isSystemUser = true;
|
2020-03-04 09:08:49 -08:00
|
|
|
group = cfg.group;
|
2021-10-05 07:52:02 -07:00
|
|
|
extraGroups = [ "bitcoinrpc-public" ];
|
2020-03-04 09:08:49 -08:00
|
|
|
};
|
|
|
|
users.groups.${cfg.group} = {};
|
2020-05-10 07:13:20 -07:00
|
|
|
};
|
2019-01-02 13:40:53 -08:00
|
|
|
}
|