trustedcoin: add module

This commit is contained in:
neverupdate 2022-08-27 01:15:06 -03:00 committed by Greg Shuflin
parent fbe8f7c6cb
commit cf10fbb74f
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.clightning.plugins.trustedcoin; in
{
options.services.clightning.plugins.trustedcoin = {
enable = mkEnableOption "Trustedcoin (clightning plugin)";
package = mkOption {
type = types.package;
default = config.nix-bitcoin.pkgs.trustedcoin;
defaultText = "config.nix-bitcoin.pkgs.trustedcoin";
description = "The package providing trustedcoin binaries.";
};
};
config = mkIf cfg.enable {
services.clightning.extraConfig = ''
plugin=${cfg.package}/bin/trustedcoin
'';
};
}