This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env nu | |
| # Generates addresses like the Keystone 3 Pro does | |
| # when using a passcode (aka 25th word). | |
| def main [ | |
| --mnemonic-file: path | |
| --passphrase-file: path | |
| --account: int = 0 | |
| --index: int = 0 | |
| ] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, lib, ... }: | |
| with lib; | |
| let | |
| cfg = config.services.nixBinaryCacheCache; | |
| nginxCfg = config.services.nginx; |