Add shell.nix

This commit is contained in:
Tim Schubert 2021-01-16 19:47:36 +01:00
parent 04ef7f0bb5
commit 939c10aacd
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
with (import ./default.nix { inherit pkgs; });
pkgs.mkShell {
buildInputs = [
deploy
];
}