infra/shell.nix
adisbladis bbfa1000c8
New nix-community infra repo!
Currently contains the Nixops deployment for our builder machine
2019-08-11 11:21:19 +01:00

16 lines
284 B
Nix

let
channelUrl = "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz";
nixpkgs = builtins.fetchTarball channelUrl;
pkgs = import nixpkgs {};
in pkgs.mkShell {
NIX_PATH="nixpkgs=${nixpkgs}";
buildInputs = [
pkgs.git-crypt
pkgs.nixops
];
}