2020-07-07 07:22:17 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
options.services.lightning-loop = {
|
2021-12-14 10:51:23 -08:00
|
|
|
enable = mkEnableOption "Lightning Loop, a non-custodial off/on chain bridge";
|
2020-10-29 13:20:36 -07:00
|
|
|
rpcAddress = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "localhost";
|
|
|
|
description = "Address to listen for gRPC connections.";
|
|
|
|
};
|
|
|
|
rpcPort = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 11010;
|
|
|
|
description = "Port to listen for gRPC connections.";
|
|
|
|
};
|
|
|
|
restAddress = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.rpcAddress;
|
|
|
|
description = "Address to listen for REST connections.";
|
|
|
|
};
|
|
|
|
restPort = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 8081;
|
|
|
|
description = "Port to listen for REST connections.";
|
|
|
|
};
|
2020-07-07 07:22:17 -07:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
2020-11-09 13:09:09 -08:00
|
|
|
default = config.nix-bitcoin.pkgs.lightning-loop;
|
2021-12-07 19:07:28 -08:00
|
|
|
defaultText = "config.nix-bitcoin.pkgs.lightning-loop";
|
2020-07-07 07:22:17 -07:00
|
|
|
description = "The package providing lightning-loop binaries.";
|
|
|
|
};
|
2020-09-15 01:46:15 -07:00
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/lightning-loop";
|
|
|
|
description = "The data directory for lightning-loop.";
|
|
|
|
};
|
2020-07-07 07:22:17 -07:00
|
|
|
proxy = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
2021-11-28 12:24:49 -08:00
|
|
|
default = if cfg.tor.proxy then config.nix-bitcoin.torClientAddressWithPort else null;
|
2020-09-15 01:46:15 -07:00
|
|
|
description = "host:port of SOCKS5 proxy for connnecting to the loop server.";
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
2022-07-07 07:08:28 -07:00
|
|
|
certificate = {
|
|
|
|
extraIPs = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [];
|
|
|
|
example = [ "60.100.0.1" ];
|
|
|
|
description = ''
|
|
|
|
Extra `subjectAltName` IPs added to the certificate.
|
|
|
|
This works the same as loop option `tlsextraip`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
extraDomains = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [];
|
|
|
|
example = [ "example.com" ];
|
|
|
|
description = ''
|
|
|
|
Extra `subjectAltName` domain names added to the certificate.
|
|
|
|
This works the same as loop option `tlsextradomain`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2020-09-15 01:46:15 -07:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
2020-07-07 07:22:17 -07:00
|
|
|
default = "";
|
2020-09-15 01:46:15 -07:00
|
|
|
example = ''
|
|
|
|
debuglevel=trace
|
|
|
|
'';
|
2022-07-07 07:08:26 -07:00
|
|
|
description = ''
|
|
|
|
Extra lines appended to the configuration file.
|
|
|
|
See here for all available options:
|
|
|
|
https://github.com/lightninglabs/loop/blob/11ab596080e9d36f1df43edbeba0702b25aa7457/loopd/config.go#L119
|
|
|
|
'';
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
|
|
|
cli = mkOption {
|
2020-09-15 01:46:15 -07:00
|
|
|
default = pkgs.writeScriptBin "loop" ''
|
2020-10-29 13:20:37 -07:00
|
|
|
${cfg.package}/bin/loop \
|
2021-10-01 02:51:57 -07:00
|
|
|
--rpcserver ${nbLib.addressWithPort cfg.rpcAddress cfg.rpcPort} \
|
2020-10-16 06:46:01 -07:00
|
|
|
--macaroonpath '${cfg.dataDir}/${network}/loop.macaroon' \
|
|
|
|
--tlscertpath '${secretsDir}/loop-cert' "$@"
|
2020-07-07 07:22:17 -07:00
|
|
|
'';
|
2021-12-07 19:07:28 -08:00
|
|
|
defaultText = "(See source)";
|
2020-09-15 01:46:15 -07:00
|
|
|
description = "Binary to connect with the lightning-loop instance.";
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
2021-11-28 12:24:49 -08:00
|
|
|
tor = nbLib.tor;
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
|
|
|
|
2021-09-13 04:40:47 -07:00
|
|
|
cfg = config.services.lightning-loop;
|
|
|
|
nbLib = config.nix-bitcoin.lib;
|
|
|
|
secretsDir = config.nix-bitcoin.secretsDir;
|
|
|
|
|
|
|
|
lnd = config.services.lnd;
|
|
|
|
|
|
|
|
network = config.services.bitcoind.network;
|
|
|
|
configFile = builtins.toFile "loop.conf" ''
|
|
|
|
datadir=${cfg.dataDir}
|
|
|
|
network=${network}
|
2021-10-01 02:51:57 -07:00
|
|
|
rpclisten=${cfg.rpcAddress}:${toString cfg.rpcPort}
|
2021-09-13 04:40:47 -07:00
|
|
|
restlisten=${cfg.restAddress}:${toString cfg.restPort}
|
|
|
|
logdir=${cfg.dataDir}/logs
|
|
|
|
tlscertpath=${secretsDir}/loop-cert
|
|
|
|
tlskeypath=${secretsDir}/loop-key
|
|
|
|
|
2021-10-01 02:51:57 -07:00
|
|
|
lnd.host=${nbLib.addressWithPort lnd.rpcAddress lnd.rpcPort}
|
2021-09-13 04:40:47 -07:00
|
|
|
lnd.macaroonpath=${lnd.networkDir}/admin.macaroon
|
|
|
|
lnd.tlspath=${lnd.certPath}
|
|
|
|
|
|
|
|
${optionalString (cfg.proxy != null) "server.proxy=${cfg.proxy}"}
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
in {
|
|
|
|
inherit options;
|
|
|
|
|
2020-07-07 07:22:17 -07:00
|
|
|
config = mkIf cfg.enable {
|
2020-10-18 05:49:20 -07:00
|
|
|
services.lnd.enable = true;
|
2020-07-07 07:22:17 -07:00
|
|
|
|
|
|
|
environment.systemPackages = [ cfg.package (hiPrio cfg.cli) ];
|
|
|
|
|
2020-09-15 01:46:15 -07:00
|
|
|
systemd.tmpfiles.rules = [
|
2021-09-08 08:01:12 -07:00
|
|
|
"d '${cfg.dataDir}' 0770 ${lnd.user} ${lnd.group} - -"
|
2020-09-15 01:46:15 -07:00
|
|
|
];
|
|
|
|
|
2022-07-07 07:08:28 -07:00
|
|
|
services.lightning-loop.certificate.extraIPs = mkIf (cfg.rpcAddress != "localhost") [ "${cfg.rpcAddress}" ];
|
|
|
|
|
2020-07-07 07:22:17 -07:00
|
|
|
systemd.services.lightning-loop = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
requires = [ "lnd.service" ];
|
|
|
|
after = [ "lnd.service" ];
|
2021-02-03 13:44:41 -08:00
|
|
|
serviceConfig = nbLib.defaultHardening // {
|
2020-09-15 01:46:15 -07:00
|
|
|
ExecStart = "${cfg.package}/bin/loopd --configfile=${configFile}";
|
2021-09-08 08:01:12 -07:00
|
|
|
User = lnd.user;
|
2020-07-07 07:22:17 -07: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;
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
2020-09-15 01:46:15 -07:00
|
|
|
|
|
|
|
nix-bitcoin.secrets = {
|
2021-09-08 08:01:12 -07:00
|
|
|
loop-key.user = lnd.user;
|
|
|
|
loop-cert.user = lnd.user;
|
2020-09-15 01:46:15 -07:00
|
|
|
};
|
2021-09-08 08:01:18 -07:00
|
|
|
nix-bitcoin.generateSecretsCmds.lightning-loop = ''
|
2022-07-07 07:08:28 -07:00
|
|
|
makeCert loop '${nbLib.mkCertExtraAltNames cfg.certificate}'
|
2021-09-08 08:01:18 -07:00
|
|
|
'';
|
2020-07-07 07:22:17 -07:00
|
|
|
};
|
|
|
|
}
|