calculatey/shell.nix
2025-01-10 21:36:26 +01:00

9 lines
143 B
Nix

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