troylusty.com/shell.nix

7 lines
120 B
Nix

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