projects/shell.nix
2026-01-25 14:25:15 -08:00

11 lines
118 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
cargo
just
];
}