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 fd7249763e
commit bede886699
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80

8
shell.nix Normal file
View File

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