Rename env.nix to shell.nix

This commit is contained in:
Jonas Nick 2019-01-04 11:09:35 +00:00
parent bb07fa9589
commit 04aafd218f
No known key found for this signature in database
GPG key ID: 4861DBF262123605
2 changed files with 3 additions and 3 deletions

21
shell.nix Normal file
View file

@ -0,0 +1,21 @@
let
# Pin nixpkgs
nixpkgs = builtins.fetchGit {
url = "https://github.com/nixos/nixpkgs-channels";
ref = "nixos-18.09";
rev = "0396345b79436f54920f7eb651ab42acf2eb7973";
};
in
with import nixpkgs { };
stdenv.mkDerivation rec {
name = "nix-bitcoin-environment";
buildInputs = [ pkgs.nixops pkgs.figlet pkgs.apg ];
shellHook = ''
export NIX_PATH="nixpkgs=${nixpkgs}:."
figlet "nix-bitcoin"
./secrets/generate_secrets.sh
'';
}