1
Fork 0
driftingnebula-com/shell.nix

11 lines
102 B
Nix
Raw Normal View History

2024-03-01 23:05:17 +00:00
{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell {
packages = [
bun
cargo-make
];
}