Clean up development shell.nix

This commit is contained in:
Jonas Nick 2020-03-08 14:14:38 +00:00 committed by Erik Arvstedt
parent abcee651d3
commit 44ccbb91d0
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 1 additions and 11 deletions

View File

@ -6,17 +6,7 @@ with import nixpkgs {};
stdenv.mkDerivation rec {
name = "nix-bitcoin-environment";
nixops19_09 = callPackage ./pkgs/nixops {};
buildInputs = [ nixops19_09 figlet ];
shellHook = ''
export NIX_PATH="nixpkgs=${nixpkgs}:."
# ssh-agent and nixops don't play well together (see
# https://github.com/NixOS/nixops/issues/256). I'm getting `Received disconnect
# from 10.1.1.200 port 22:2: Too many authentication failures` if I have a few
# keys already added to my ssh-agent.
export SSH_AUTH_SOCK=""
figlet "nix-bitcoin dev shell"
export NIX_PATH="nixpkgs=${nixpkgs}:nix-bitcoin=./:."
'';
}