1
Fork 0
driftingnebula-com/shell.nix

11 lines
102 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell {
packages = [
bun
cargo-make
];
}