From 0e317a5a1b0d2967a6f03bf61b8ee3c01a09fc46 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 09:29:02 +0200 Subject: [PATCH] Add comments to joinmarket.nix --- system/bitcoin/joinmarket.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/system/bitcoin/joinmarket.nix b/system/bitcoin/joinmarket.nix index f63acd8..6ccbd9a 100644 --- a/system/bitcoin/joinmarket.nix +++ b/system/bitcoin/joinmarket.nix @@ -1,5 +1,19 @@ +### JOINMARKET { - services.joinmarket = { + services = { + joinmarket = { + # Set this to enable the JoinMarket service, including its command-line scripts. + # These scripts have prefix 'jm-', like 'jm-tumbler'. + # Note: JoinMarket has full access to bitcoind, including its wallet functionality. enable = true; - }; + # + # Set this to enable the JoinMarket Yield Generator Bot. You will be able to + # earn sats by providing CoinJoin liquidity. This makes it impossible to use other + # scripts that access your wallet. + # services.joinmarket.yieldgenerator.enable = true; + # + }; + # Set this to enable the JoinMarket order book watcher. + joinmarket-ob-watcher.enable = true; + }; }