From e2fd0f89a08ef177b1eb28ea667969ddd1b85e7e Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 17 Mar 2026 17:41:35 +0300 Subject: [PATCH] nix: add cargo-nextest to default devshell Signed-off-by: NotAShelf Change-Id: Ica8a3f57f6b005134be2ade63bdfe9746a6a6964 --- nix/shell.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/shell.nix b/nix/shell.nix index 4559ca1..a370a88 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -2,10 +2,11 @@ mkShell, rustc, cargo, - rust-analyzer-unwrapped, rustfmt, clippy, taplo, + rust-analyzer-unwrapped, + cargo-nextest, rustPlatform, }: mkShell { @@ -24,6 +25,9 @@ mkShell { # LSP rust-analyzer-unwrapped + + # Additional Cargo tooling + cargo-nextest ]; env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";