Add comments to lnd.nix

This commit is contained in:
Bitcoin Txoko
2024-07-23 09:13:03 +02:00
committed by GitHub
parent 59bfba218b
commit 3266c549df
+5 -5
View File
@@ -5,13 +5,13 @@
# #
services.lnd = { services.lnd = {
enable = true; enable = true;
# NOTE: In order to avoid collisions with clightning you must disable clightning or
# change the services.clightning.port or services.lnd.port to a port other than
# 9735.
#
port = 9736; port = 9736;
}; };
# NOTE: In order to avoid collisions with clightning you must disable clightning or
# change the services.clightning.port or services.lnd.port to a port other than
# 9735.
#
# Set this to create an onion service by which lnd can accept incoming connections # Set this to create an onion service by which lnd can accept incoming connections
# via Tor. # via Tor.
# The onion service is automatically announced to peers. # The onion service is automatically announced to peers.
@@ -40,5 +40,5 @@
# This will allow you to recover off-chain funds, by force-closing channels. # This will allow you to recover off-chain funds, by force-closing channels.
# scp bitcoin-node:/var/lib/lnd/chain/bitcoin/mainnet/channel.backup ./backups/lnd/ # scp bitcoin-node:/var/lib/lnd/chain/bitcoin/mainnet/channel.backup ./backups/lnd/
# #
# Alternatively, you can have these files backed up by services.backups below. # Alternatively, you can have these files backed up by services.backups.
} }