troylusty.com/shell.nix

7 lines
109 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-01-04 22:26:08 +00:00
];
}