89cd77a64b
Create a simple React app to define my goals. See the goals/README.md for more context.
7 lines
99 B
Nix
7 lines
99 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
];
|
|
}
|