From b26c8d472e08f42bd628f7620dec5c3a0249f51e Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Tue, 16 Sep 2025 11:27:27 +0000 Subject: [PATCH] add doc/wiki/Install-MMGen-Wallet-on-Nix.md --- doc/wiki/Install-MMGen-Wallet-on-Nix.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 doc/wiki/Install-MMGen-Wallet-on-Nix.md diff --git a/doc/wiki/Install-MMGen-Wallet-on-Nix.md b/doc/wiki/Install-MMGen-Wallet-on-Nix.md new file mode 100644 index 00000000..2771e099 --- /dev/null +++ b/doc/wiki/Install-MMGen-Wallet-on-Nix.md @@ -0,0 +1,24 @@ +Perform the following steps: + +```text +$ git clone https://github.com/mmgen/mmgen-wallet.git +$ cd mmgen-wallet +$ mkdir -p ~/.mmgen +$ cp nix/user-packages.nix ~/.mmgen +``` + +For altcoin support, edit `~/.mmgen/user-packages.nix` to taste, uncommenting +the relevant lines for whatever support you require. For a BTC-only setup, +you can leave the file untouched. + +Build required derivations and enter the custom Nix shell environment: + +```text +$ nix-shell nix # for full isolation, add the ‘--pure’ option +``` + +Within nix-shell you may now test and use MMGen Wallet as with any normal +installation. + +Refer to `nix/README` in the MMGen Wallet repo for more information, including +a speedup tip and instructions for installation on NixOS.