About to make change to fixing the postgres nbxplorer configuration, have to take a pause to this to get back to helm project.
This commit is contained in:
parent
11c5cd382e
commit
f55936312f
6 changed files with 85 additions and 35 deletions
16
shell.nix
16
shell.nix
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
just
|
||||
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
|
||||
# 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."
|
||||
'';
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue