22 lines
686 B
Nix
22 lines
686 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
just # task runner
|
|
sops # secrets management
|
|
postgresql # includes psql client utility[6][9]
|
|
bitcoin # Bitcoin Core CLI tools (bitcoind, bitcoin-cli)
|
|
curl # For HTTP API testing
|
|
jq # For manipulating test output
|
|
git
|
|
# dotnet-sdk # IF you develop/plugins for NBXplorer, uncomment this
|
|
];
|
|
|
|
shellHook = ''
|
|
export SSH_CONFIG_FILE="$PWD/ssh-config-dev"
|
|
alias ssh="ssh -F $SSH_CONFIG_FILE"
|
|
alias scp="scp -F $SSH_CONFIG_FILE"
|
|
echo "Repo-local SSH config active: using $SSH_CONFIG_FILE for ssh/scp."
|
|
'';
|
|
}
|
|
|