nix-bitcoin/modules/clightning.nix

102 lines
3.3 KiB
Nix
Raw Normal View History

2018-11-22 10:49:53 -08:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.clightning;
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
${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}
'';
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.
'';
};
proxy = mkOption {
type = types.nullOr types.str;
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 {
type = types.nullOr types.str;
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 {
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";
description = "The data directory for clightning.";
2018-11-28 15:54:19 -08:00
};
enforceTor = nix-bitcoin-services.enforceTor;
2018-11-22 10:49:53 -08:00
};
config = mkIf cfg.enable {
2019-01-02 07:17:57 -08:00
users.users.clightning = {
description = "clightning User";
group = "clightning";
extraGroups = [ "bitcoinrpc" ];
2019-01-02 07:17:57 -08:00
home = cfg.dataDir;
};
2019-11-27 05:04:15 -08:00
users.groups.clightning = {};
2018-11-28 15:54:19 -08:00
2019-01-02 07:17:57 -08:00
systemd.services.clightning = {
description = "Run clightningd";
path = [ pkgs.nix-bitcoin.bitcoind ];
2019-01-02 07:17:57 -08:00
wantedBy = [ "multi-user.target" ];
requires = [ "bitcoind.service" ];
after = [ "bitcoind.service" ];
preStart = ''
mkdir -m 0770 -p ${cfg.dataDir}
cp ${configFile} ${cfg.dataDir}/config
2019-08-19 13:39:13 -07:00
chown -R 'clightning:clightning' '${cfg.dataDir}'
# give group read access to allow using lightning-cli
chmod u=rw,g=r,o= ${cfg.dataDir}/config
2019-01-02 07:17:57 -08:00
# The RPC socket has to be removed otherwise we might have stale sockets
rm -f ${cfg.dataDir}/lightning-rpc
echo "bitcoin-rpcpassword=$(cat /secrets/bitcoin-rpcpassword)" >> '${cfg.dataDir}/config'
'';
serviceConfig = {
PermissionsStartOnly = "true";
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";
} // nix-bitcoin-services.defaultHardening
// (if cfg.enforceTor
then nix-bitcoin-services.allowTor
else nix-bitcoin-services.allowAnyIP
);
2018-11-22 10:49:53 -08:00
};
2019-01-02 07:17:57 -08:00
};
2018-11-22 10:49:53 -08:00
}