about summary refs log tree commit diff
path: root/website/goals/shell.nix
blob: b5df9e540dfb3bad735c68742bfc83ed70df0c44 (plain) (blame)
1
2
3
4
5
6
7
let
  pkgs = import <nixpkgs> {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
  ];
}