2018-11-13 15:44:54 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.bitcoin;
|
2018-11-13 16:33:34 -08:00
|
|
|
home = "/var/lib/bitcoin";
|
|
|
|
configFile = pkgs.writeText "bitcoin.conf" ''
|
2018-11-22 10:49:53 -08:00
|
|
|
listen=${if cfg.listen then "1" else "0"}
|
2018-11-22 15:06:41 -08:00
|
|
|
prune=2000
|
2018-11-22 10:49:53 -08:00
|
|
|
assumevalid=0000000000000000000726d186d6298b5054b9a5c49639752294b322a305d240
|
|
|
|
${optionalString (cfg.proxy != null) "proxy=${cfg.proxy}"}
|
|
|
|
addnode=ecoc5q34tmbq54wl.onion
|
|
|
|
discover=0
|
|
|
|
${optionalString (cfg.port != null) "port=${toString cfg.port}"}
|
2018-11-22 15:06:41 -08:00
|
|
|
${optionalString (cfg.rpcuser != null) "rpcuser=${cfg.rpcuser}"}
|
|
|
|
${optionalString (cfg.rpcpassword != null) "rpcuser=${cfg.rpcpassword}"}
|
2018-11-22 10:49:53 -08:00
|
|
|
'';
|
2018-11-13 15:44:54 -08:00
|
|
|
in {
|
|
|
|
options.services.bitcoin = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
If enabled, the bitcoin service will be installed.
|
|
|
|
'';
|
|
|
|
};
|
2018-11-19 15:09:57 -08:00
|
|
|
listen = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
If enabled, the bitcoin service will listen.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
proxy = mkOption {
|
|
|
|
type = types.nullOr types.string;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
proxy
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
port = mkOption {
|
|
|
|
type = types.nullOr types.ints.u16;
|
|
|
|
default = null;
|
|
|
|
description = "Override the default port on which to listen for connections.";
|
|
|
|
};
|
2018-11-22 15:06:41 -08:00
|
|
|
rpcuser = mkOption {
|
|
|
|
type = types.nullOr types.string;
|
|
|
|
default = null;
|
|
|
|
description = "Set bitcoin RPC user";
|
|
|
|
};
|
|
|
|
rpcpassword = mkOption {
|
|
|
|
type = types.nullOr types.string;
|
|
|
|
default = null;
|
|
|
|
description = "Set bitcoin RPC password";
|
|
|
|
};
|
2018-11-13 15:44:54 -08:00
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
2018-11-22 10:49:53 -08:00
|
|
|
users.users.bitcoin = {
|
|
|
|
description = "Bitcoind User";
|
|
|
|
createHome = true;
|
|
|
|
inherit home;
|
|
|
|
};
|
|
|
|
systemd.services.bitcoind = {
|
|
|
|
description = "Run bitcoind";
|
|
|
|
path = [ pkgs.bitcoin ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
|
|
|
mkdir -p ${home}/.bitcoin
|
|
|
|
ln -sf ${configFile} ${home}/.bitcoin/bitcoin.conf
|
|
|
|
'';
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.bitcoin}/bin/bitcoind";
|
|
|
|
User = "bitcoin";
|
|
|
|
Restart = "on-failure";
|
|
|
|
|
|
|
|
PrivateTmp = "true";
|
|
|
|
ProtectSystem = "full";
|
|
|
|
NoNewPrivileges = "true";
|
|
|
|
PrivateDevices = "true";
|
|
|
|
MemoryDenyWriteExecute = "true";
|
2018-11-13 15:44:54 -08:00
|
|
|
};
|
2018-11-19 15:09:57 -08:00
|
|
|
};
|
2018-11-22 10:49:53 -08:00
|
|
|
};
|
2018-11-13 15:44:54 -08:00
|
|
|
}
|