2018-11-22 10:49:53 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.clightning;
|
2019-11-27 05:04:23 -08:00
|
|
|
inherit (config) nix-bitcoin-services;
|
2018-11-22 10:49:53 -08:00
|
|
|
configFile = pkgs.writeText "config" ''
|
2018-12-03 14:16:01 -08:00
|
|
|
autolisten=${if cfg.autolisten then "true" else "false"}
|
2018-11-22 10:49:53 -08:00
|
|
|
network=bitcoin
|
2020-04-19 05:44:03 -07:00
|
|
|
bitcoin-datadir=${config.services.bitcoind.dataDir}
|
2019-03-07 04:16:11 -08:00
|
|
|
${optionalString (cfg.proxy != null) "proxy=${cfg.proxy}"}
|
|
|
|
always-use-proxy=${if cfg.always-use-proxy then "true" else "false"}
|
|
|
|
${optionalString (cfg.bind-addr != null) "bind-addr=${cfg.bind-addr}"}
|
2018-11-22 10:49:53 -08:00
|
|
|
bitcoin-rpcuser=${cfg.bitcoin-rpcuser}
|
2020-05-18 07:32:49 -07:00
|
|
|
rpc-file-mode=0660
|
2018-11-22 10:49:53 -08:00
|
|
|
'';
|
|
|
|
in {
|
|
|
|
options.services.clightning = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
If enabled, the clightning service will be installed.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
autolisten = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
If enabled, the clightning service will listen.
|
|
|
|
'';
|
|
|
|
};
|
2019-03-07 04:16:11 -08:00
|
|
|
proxy = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2019-03-07 04:16:11 -08:00
|
|
|
default = null;
|
|
|
|
description = "Set a socks proxy to use to connect to Tor nodes (or for all connections if *always-use-proxy* is set)";
|
|
|
|
};
|
|
|
|
always-use-proxy = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Always use the *proxy*, even to connect to normal IP addresses (you can still connect to Unix domain sockets manually). This also disables all DNS lookups, to avoid leaking information.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
bind-addr = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2019-03-07 04:16:11 -08:00
|
|
|
default = null;
|
|
|
|
description = "Set an IP address or UNIX domain socket to listen to";
|
|
|
|
};
|
2018-11-22 10:49:53 -08:00
|
|
|
bitcoin-rpcuser = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.str;
|
2018-11-22 10:49:53 -08:00
|
|
|
description = ''
|
|
|
|
Bitcoin RPC user
|
|
|
|
'';
|
|
|
|
};
|
2018-11-28 15:54:19 -08:00
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/clightning";
|
2019-01-02 13:40:53 -08:00
|
|
|
description = "The data directory for clightning.";
|
2018-11-28 15:54:19 -08:00
|
|
|
};
|
2019-11-27 05:04:33 -08:00
|
|
|
cli = mkOption {
|
|
|
|
readOnly = true;
|
|
|
|
default = pkgs.writeScriptBin "lightning-cli"
|
|
|
|
''
|
2020-05-18 07:32:49 -07:00
|
|
|
${pkgs.nix-bitcoin.clightning}/bin/lightning-cli --lightning-dir='${cfg.dataDir}' "$@"
|
2019-11-27 05:04:33 -08:00
|
|
|
'';
|
|
|
|
description = "Binary to connect with the clightning instance.";
|
|
|
|
};
|
2019-04-27 16:53:26 -07:00
|
|
|
enforceTor = nix-bitcoin-services.enforceTor;
|
2018-11-22 10:49:53 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2020-04-07 13:47:45 -07:00
|
|
|
environment.systemPackages = [ pkgs.nix-bitcoin.clightning (hiPrio cfg.cli) ];
|
2019-01-02 07:17:57 -08:00
|
|
|
users.users.clightning = {
|
|
|
|
description = "clightning User";
|
|
|
|
group = "clightning";
|
2020-05-21 09:05:31 -07:00
|
|
|
extraGroups = [ "bitcoinrpc" ];
|
2019-01-02 07:17:57 -08:00
|
|
|
};
|
2019-11-27 05:04:15 -08:00
|
|
|
users.groups.clightning = {};
|
2018-11-28 15:54:19 -08:00
|
|
|
|
2020-05-06 03:43:57 -07:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d '${cfg.dataDir}' 0770 ${config.users.users.clightning.name} ${config.users.users.clightning.group} - -"
|
|
|
|
];
|
|
|
|
|
2019-01-02 07:17:57 -08:00
|
|
|
systemd.services.clightning = {
|
|
|
|
description = "Run clightningd";
|
2019-11-27 05:04:21 -08:00
|
|
|
path = [ pkgs.nix-bitcoin.bitcoind ];
|
2019-01-02 07:17:57 -08:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
requires = [ "bitcoind.service" ];
|
|
|
|
after = [ "bitcoind.service" ];
|
|
|
|
preStart = ''
|
|
|
|
cp ${configFile} ${cfg.dataDir}/config
|
2019-08-19 13:39:13 -07:00
|
|
|
chown -R 'clightning:clightning' '${cfg.dataDir}'
|
2019-01-02 07:17:57 -08:00
|
|
|
# The RPC socket has to be removed otherwise we might have stale sockets
|
2020-01-09 05:27:45 -08:00
|
|
|
rm -f ${cfg.dataDir}/bitcoin/lightning-rpc
|
2020-05-11 04:59:53 -07:00
|
|
|
chmod 600 ${cfg.dataDir}/config
|
2020-01-12 11:52:39 -08:00
|
|
|
echo "bitcoin-rpcpassword=$(cat ${config.nix-bitcoin.secretsDir}/bitcoin-rpcpassword)" >> '${cfg.dataDir}/config'
|
2019-01-02 07:17:57 -08:00
|
|
|
'';
|
2020-05-05 06:18:41 -07:00
|
|
|
serviceConfig = nix-bitcoin-services.defaultHardening // {
|
2019-11-27 05:04:21 -08:00
|
|
|
ExecStart = "${pkgs.nix-bitcoin.clightning}/bin/lightningd --lightning-dir=${cfg.dataDir}";
|
2019-01-02 07:17:57 -08:00
|
|
|
User = "clightning";
|
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
2020-05-05 06:18:41 -07:00
|
|
|
} // (if cfg.enforceTor
|
2019-04-27 16:53:26 -07:00
|
|
|
then nix-bitcoin-services.allowTor
|
|
|
|
else nix-bitcoin-services.allowAnyIP
|
|
|
|
);
|
2019-11-27 05:04:38 -08:00
|
|
|
# Wait until the rpc socket appears
|
|
|
|
postStart = ''
|
2020-01-09 05:27:45 -08:00
|
|
|
while [[ ! -e ${cfg.dataDir}/bitcoin/lightning-rpc ]]; do
|
|
|
|
sleep 0.1
|
|
|
|
done
|
2020-05-18 07:32:49 -07:00
|
|
|
# Needed to enable lightning-cli for users with group 'clightning'
|
|
|
|
chmod g+x ${cfg.dataDir}/bitcoin
|
2019-11-27 05:04:38 -08:00
|
|
|
'';
|
2018-11-22 10:49:53 -08:00
|
|
|
};
|
2019-01-02 07:17:57 -08:00
|
|
|
};
|
2018-11-22 10:49:53 -08:00
|
|
|
}
|