redirekt/shell.nix

9 lines
109 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs-16_x
yarn
];
}