troylusty.com/shell.nix

7 lines
112 B
Nix
Raw Normal View History

2025-01-04 22:26:08 +00:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
2025-01-04 22:26:08 +00:00
];
}