af969a7641
Trying to obviate my Google Sheets spreadsheet in favor of a more focused web app.
8 lines
108 B
Nix
8 lines
108 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
yarn
|
|
];
|
|
}
|