troylusty.com/shell.nix

8 lines
120 B
Nix
Raw Normal View History

2025-01-04 22:26:08 +00:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
2025-01-18 21:50:40 +00:00
bun
2025-02-11 00:08:06 +00:00
nodejs
2025-01-04 22:26:08 +00:00
];
}