f4fea2346e
Nest the sandbox work under ./website.
8 lines
108 B
Nix
8 lines
108 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
yarn
|
|
nodejs
|
|
];
|
|
}
|