From 3f22921986791f3ebc9aa58c0acdbc1114780a91 Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Tue, 2 Sep 2025 15:41:38 +0100 Subject: [PATCH] chore: add `nextest` to dev environment --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9ba0142..a6030b1 100644 --- a/flake.nix +++ b/flake.nix @@ -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; {