From 6b1c7d3c9bcfde21b83160067ffe323ba30be23c Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Sun, 11 Jan 2026 13:23:28 +0000 Subject: [PATCH] chore(nix): use mkShellNoCC for lighter dev shell Switch from mkShell to mkShellNoCC since this project doesn't require a C compiler toolchain. This reduces unnecessary dependencies and speeds up shell initialisation for Node.js/pnpm development. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 822f98f..e72dfd6 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ pkgs = nixpkgs.legacyPackages.${system}; in { - default = pkgs.mkShell { + default = pkgs.mkShellNoCC { buildInputs = with pkgs; [ # runtime nodejs_24