about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/contentful/shell.nix
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
    yarn
  ];
}