projects/shell.nix

12 lines
118 B
Nix
Raw Permalink Normal View History

2026-01-25 14:25:15 -08:00
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
cargo
just
];
}