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;
|
2020-06-04 01:23:02 -07:00
|
|
|
onion-chef-service = (if cfg.announce-tor then [ "onion-chef.service" ] else []);
|
2018-11-22 10:49:53 -08:00
|
|
|
configFile = pkgs.writeText "config" ''
|
|
|
|
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"}
|
2020-08-04 06:21:40 -07:00
|
|
|
${optionalString (cfg.bind-addr != null) "bind-addr=${cfg.bind-addr}:${toString cfg.bindport}"}
|
2020-06-10 07:31:38 -07:00
|
|
|
${optionalString (cfg.bitcoin-rpcconnect != null) "bitcoin-rpcconnect=${cfg.bitcoin-rpcconnect}"}
|
2020-06-22 05:10:54 -07:00
|
|
|
bitcoin-rpcuser=${config.services.bitcoind.rpc.users.public.name}
|
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 = ''
|
2020-06-04 01:23:02 -07:00
|
|
|
Bind (and maybe announce) on IPv4 and IPv6 interfaces if no addr,
|
|
|
|
bind-addr or announce-addr options are specified.
|
2018-11-22 10:49:53 -08:00
|
|
|
'';
|
|
|
|
};
|
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 {
|
2020-08-04 07:11:51 -07:00
|
|
|
type = pkgs.nix-bitcoin.lib.ipv4Address;
|
2020-08-04 06:21:40 -07:00
|
|
|
default = "127.0.0.1";
|
2019-03-07 04:16:11 -08:00
|
|
|
description = "Set an IP address or UNIX domain socket to listen to";
|
|
|
|
};
|
2020-08-04 00:35:07 -07:00
|
|
|
bindport = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 9735;
|
|
|
|
description = "Set a Port to listen to locally";
|
|
|
|
};
|
2020-06-04 01:23:02 -07:00
|
|
|
announce-tor = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Announce clightning Tor Hidden Service";
|
|
|
|
};
|
2020-06-10 07:31:38 -07:00
|
|
|
bitcoin-rpcconnect = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = "The bitcoind RPC host to connect to.";
|
|
|
|
};
|
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
|
|
|
};
|
2020-05-19 09:09:22 -07:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "clightning";
|
|
|
|
description = "The user as which to run clightning.";
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.user;
|
|
|
|
description = "The group as which to run clightning.";
|
|
|
|
};
|
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) ];
|
2020-05-19 09:09:22 -07:00
|
|
|
users.users.${cfg.user} = {
|
2019-01-02 07:17:57 -08:00
|
|
|
description = "clightning User";
|
2020-05-19 09:09:22 -07:00
|
|
|
group = cfg.group;
|
2020-05-21 09:05:31 -07:00
|
|
|
extraGroups = [ "bitcoinrpc" ];
|
2019-01-02 07:17:57 -08:00
|
|
|
};
|
2020-05-19 09:09:22 -07:00
|
|
|
users.groups.${cfg.group} = {};
|
2018-11-28 15:54:19 -08:00
|
|
|
|
2020-05-06 03:43:57 -07:00
|
|
|
systemd.tmpfiles.rules = [
|
2020-05-19 09:09:22 -07:00
|
|
|
"d '${cfg.dataDir}' 0770 ${cfg.user} ${cfg.group} - -"
|
2020-05-06 03:43:57 -07:00
|
|
|
];
|
|
|
|
|
2020-06-04 01:23:02 -07:00
|
|
|
services.onion-chef.access.clightning = if cfg.announce-tor then [ "clightning" ] else [];
|
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" ];
|
2020-06-04 01:23:02 -07:00
|
|
|
requires = [ "bitcoind.service" ] ++ onion-chef-service;
|
|
|
|
after = [ "bitcoind.service" ] ++ onion-chef-service;
|
2019-01-02 07:17:57 -08:00
|
|
|
preStart = ''
|
|
|
|
cp ${configFile} ${cfg.dataDir}/config
|
2020-05-19 09:09:22 -07:00
|
|
|
chown -R '${cfg.user}:${cfg.group}' '${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-06-22 05:10:54 -07:00
|
|
|
echo "bitcoin-rpcpassword=$(cat ${config.nix-bitcoin.secretsDir}/bitcoin-rpcpassword-public)" >> '${cfg.dataDir}/config'
|
2020-06-04 01:23:02 -07:00
|
|
|
${optionalString cfg.announce-tor "echo announce-addr=$(cat /var/lib/onion-chef/clightning/clightning) >> '${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}";
|
2020-05-19 09:09:22 -07:00
|
|
|
User = "${cfg.user}";
|
2019-01-02 07:17:57 -08:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
2020-05-05 08:15:16 -07:00
|
|
|
ReadWritePaths = "${cfg.dataDir}";
|
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
|
|
|
}
|