57b58e9b2f
Also move some .gitignore entries from the top-level .gitignore into a subdirectory .gitignore.
8 lines
119 B
Nix
8 lines
119 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
name = "nut-score";
|
|
buildInputs = with pkgs; [
|
|
yarn
|
|
];
|
|
}
|