{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell { packages = with pkgs; [ git nodejs ]; shellHook = '' echo "Nix shell ready" ''; }
$ nix-shell