2021-02-03 13:44:43 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
options.services.lnd.restOnionService = {
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Create an onion service for the lnd REST service.
|
|
|
|
Add a `lndconnect-rest-onion` binary (https://github.com/LN-Zap/lndconnect) to the system environment.
|
|
|
|
This binary generates QR codes or URIs for connecting applications to lnd via the REST onion service.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = config.nix-bitcoin.pkgs.lndconnect;
|
|
|
|
description = "The package providing lndconnect binaries.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-13 04:40:47 -07:00
|
|
|
cfg = config.services.lnd.restOnionService;
|
|
|
|
nbLib = config.nix-bitcoin.lib;
|
|
|
|
runAsUser = config.nix-bitcoin.runAsUserCmd;
|
|
|
|
|
|
|
|
lnd = config.services.lnd;
|
|
|
|
|
|
|
|
bin = pkgs.writeScriptBin "lndconnect-rest-onion" ''
|
|
|
|
#!/usr/bin/env -S ${runAsUser} ${lnd.user} ${pkgs.bash}/bin/bash
|
|
|
|
|
|
|
|
exec ${cfg.package}/bin/lndconnect \
|
|
|
|
--host=$(cat ${config.nix-bitcoin.onionAddresses.dataDir}/lnd/lnd-rest) \
|
|
|
|
--port=${toString lnd.restPort} \
|
|
|
|
--lnddir=${lnd.dataDir} \
|
|
|
|
--tlscertpath=${lnd.certPath} "$@"
|
|
|
|
'';
|
|
|
|
in {
|
|
|
|
inherit options;
|
|
|
|
|
2021-02-03 13:44:43 -08:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
2021-08-04 15:49:00 -07:00
|
|
|
relay.onionServices.lnd-rest = nbLib.mkOnionService {
|
2021-10-01 02:51:57 -07:00
|
|
|
target.addr = nbLib.address lnd.restAddress;
|
2021-08-04 15:49:00 -07:00
|
|
|
target.port = lnd.restPort;
|
2021-02-03 13:44:43 -08:00
|
|
|
port = lnd.restPort;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
nix-bitcoin.onionAddresses.access.lnd = [ "lnd-rest" ];
|
|
|
|
|
|
|
|
environment.systemPackages = [ bin ];
|
|
|
|
};
|
|
|
|
}
|