chore: add direnv config

pull/3023/head
Jalil Arfaoui 2024-07-11 21:48:19 +02:00
parent 7fdaa8a38a
commit 6b8c7b4e26
2 changed files with 8 additions and 0 deletions

3
.envrc Normal file
View File

@ -0,0 +1,3 @@
export NODE_ENV=development
use_nix

5
default.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixos-unstable> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nodejs yarn ];
}