nix: inline env set; add clang-tools to devshell & name shell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I5cf7ad8f9fc8c568e53e6cf8dda12b746a6a6964
This commit is contained in:
raf 2026-02-22 00:17:57 +03:00
commit c710b622da
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -9,6 +9,7 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in { in {
default = pkgs.mkShell { default = pkgs.mkShell {
name = "nixir";
buildInputs = with pkgs; [ buildInputs = with pkgs; [
boost.dev boost.dev
libblake3.dev libblake3.dev
@ -27,11 +28,10 @@
pkg-config pkg-config
ninja ninja
bear bear
clang-tools
]; ];
env = { env.NIX_PLUGINABI = "0.2";
NIX_PLUGINABI = "0.2";
};
}; };
}); });
}; };