nix: enable strict deps for devshell; add cargo-nextest

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I253fbcf0e2f13e92ac9983256f1d57fa6a6a6964
This commit is contained in:
raf 2026-02-05 22:44:42 +03:00
commit 6c322c061b
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -103,6 +103,7 @@
name = "fc"; name = "fc";
inputsFrom = [self.packages.${system}.fc-server]; inputsFrom = [self.packages.${system}.fc-server];
strictDeps = true;
packages = with pkgs; [ packages = with pkgs; [
postgresql postgresql
pkg-config pkg-config
@ -110,6 +111,8 @@
taplo taplo
(rustfmt.override {asNightly = true;}) (rustfmt.override {asNightly = true;})
clippy
cargo-nextest
]; ];
}; };
}); });