nix: add cargo-nextets to devshell; minor cleanup

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie10228eac138766923d6325f4b06070f6a6a6964
This commit is contained in:
raf 2026-05-12 17:10:35 +03:00
commit d744510ab2
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -5,13 +5,14 @@
rustfmt, rustfmt,
clippy, clippy,
taplo, taplo,
rust-analyzer-unwrapped, rust-analyzer,
rustPlatform, cargo-nextest,
}: }:
mkShell { mkShell {
name = "rust"; name = "rust";
packages = [ strictDeps = true;
nativeBuildInputs = [
rustc rustc
cargo cargo
@ -19,8 +20,8 @@ mkShell {
clippy clippy
cargo cargo
taplo taplo
rust-analyzer-unwrapped rust-analyzer
];
env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}"; cargo-nextest
];
} }