troylusty.com/shell.nix

6 lines
112 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
];
}