add a nix file to be marked as nix

This commit is contained in:
justinwoo 2019-09-04 13:47:00 +03:00
parent b1ff4ecdb3
commit c572aca178

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [ pkgs.hello ];
}