typssg/shell.nix
2025-07-13 22:34:51 -04:00

10 lines
123 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rust-analyzer
];
}