add shell.nix for easier development

This commit is contained in:
Domen Kožar
2019-11-07 10:19:07 +01:00
parent 4ad20b153f
commit 9c08345130

8
shell.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name = "install-nix-action-shell";
buildInputs = [ pkgs.yarn ];
}