nix: add cargo-nextest to default devshell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ica8a3f57f6b005134be2ade63bdfe9746a6a6964
This commit is contained in:
raf 2026-03-17 17:41:35 +03:00
commit e2fd0f89a0
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -2,10 +2,11 @@
mkShell, mkShell,
rustc, rustc,
cargo, cargo,
rust-analyzer-unwrapped,
rustfmt, rustfmt,
clippy, clippy,
taplo, taplo,
rust-analyzer-unwrapped,
cargo-nextest,
rustPlatform, rustPlatform,
}: }:
mkShell { mkShell {
@ -24,6 +25,9 @@ mkShell {
# LSP # LSP
rust-analyzer-unwrapped rust-analyzer-unwrapped
# Additional Cargo tooling
cargo-nextest
]; ];
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";