diff --git a/system/bitcoin/clightning.nix b/system/bitcoin/clightning.nix new file mode 100644 index 0000000..25b9ba0 --- /dev/null +++ b/system/bitcoin/clightning.nix @@ -0,0 +1,10 @@ +{...}: { + services = { + clightning = { + enable = true; + extraConfig = '' + experimental-offers + ''; + }; + }; +}