chore: add nextest to dev environment

This commit is contained in:
Callum Leslie 2025-09-02 15:41:38 +01:00
parent 59d7953aad
commit 3f22921986
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90

View file

@ -21,7 +21,7 @@
overlays = [(import rust-overlay)];
pkgs = import nixpkgs {inherit system overlays;};
rustToolchain = pkgs.pkgsBuildHost.rust-bin.stable.latest.default;
tools = with pkgs; [];
tools = with pkgs; [cargo-nextest];
nativeBuildInputs = with pkgs; [rustToolchain pkg-config] ++ tools;
in
with pkgs; {