From c16924b8506889c118b6a380d4a7024e5d5422f8 Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Tue, 2 Jun 2020 13:12:48 +0000 Subject: [PATCH] example config: change hwi excluding dependency to high-memory HWI can be enabled if electrs is enabled as long as electrs.high-memory is disabled. --- examples/configuration.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/configuration.nix b/examples/configuration.nix index e556765..4eb8e42 100644 --- a/examples/configuration.nix +++ b/examples/configuration.nix @@ -63,11 +63,10 @@ ### ELECTRS # Enable this module to use electrs, an efficient re-implementation of - # Electrum Server in Rust. Only enable this if hardware wallets are - # disabled. + # Electrum Server in Rust. # services.electrs.enable = true; # If you have more than 8GB memory, enable this option so electrs will - # sync faster. + # sync faster. Only available if hardware wallets are disabled. # services.electrs.high-memory = true; ### LIQUIDD @@ -110,7 +109,7 @@ ### Hardware wallets # Enable this module to allow using hardware wallets. See https://github.com/bitcoin-core/HWI - # for more information. Only enable this if electrs is disabled. + # for more information. Only available if electrs.high-memory is disabled. # Ledger must be initialized through the official ledger live app and the Bitcoin app must # be installed and running on the device. # services.hardware-wallets.ledger = true;