From f0b3f708528c9b319d9fb8856a2a5a2146b067b3 Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:28:05 +0200 Subject: [PATCH] Create hardware-wallets.nix --- system/bitcoin/hardware-wallets.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 system/bitcoin/hardware-wallets.nix diff --git a/system/bitcoin/hardware-wallets.nix b/system/bitcoin/hardware-wallets.nix new file mode 100644 index 0000000..8e013f6 --- /dev/null +++ b/system/bitcoin/hardware-wallets.nix @@ -0,0 +1,13 @@ +### Hardware wallets +# Enable the following to allow using hardware wallets. +# See https://github.com/bitcoin-core/HWI for more information. +{ + services.hardware-wallets = { + # Ledger must be initialized through the official ledger live app and the Bitcoin app must + # be installed and running on the device. + # ledger = true; + # Trezor can be initialized with the trezorctl command in nix-bitcoin. More information in + # `../docs/services.md`. + # trezor = true; + }; +}