From dca7cca4550b21eef687c7db063327be60a6f59f Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 22 Jan 2026 11:27:32 +0300 Subject: [PATCH] nix: add cargo-nextest to devshell Signed-off-by: NotAShelf Change-Id: I2266c2f3fccff23fa3950f8fac3365f36a6a6964 --- nix/shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/shell.nix b/nix/shell.nix index 9df0432..273d74a 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -6,6 +6,7 @@ clippy, taplo, rust-analyzer-unwrapped, + cargo-nextest, rustPlatform, }: mkShell { @@ -20,6 +21,9 @@ mkShell { cargo taplo rust-analyzer-unwrapped + + # Additional Cargo Tooling + cargo-nextest ]; RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";