dev: nix shell file

This commit is contained in:
Thomas Hobson 2021-03-13 14:31:40 +13:00
parent f615e26493
commit 69c013fa7a
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 5 additions and 0 deletions

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = [ pkgs.buildPackages.nodejs-15_x ];
}