Add accentor nix shell configs

This commit is contained in:
Charlotte Van Petegem 2020-02-22 11:29:31 +01:00
parent c47b99a8c1
commit e3abd332af
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = [
pkgs.nodejs-12_x
pkgs.yarn
];
}