nix: add nix-shell configuration

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-16 05:30:32 +05:30
parent 1254997f73
commit 92a446a8e8
1 changed files with 8 additions and 0 deletions

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs-16_x
wrangler
];
}