Skip to content

Commit 1a360dc

Browse files
authored
chore(nix): use mkShellNoCC for lighter dev shell (#286)
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.
1 parent 9711813 commit 1a360dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
pkgs = nixpkgs.legacyPackages.${system};
2323
in
2424
{
25-
default = pkgs.mkShell {
25+
default = pkgs.mkShellNoCC {
2626
buildInputs = with pkgs; [
2727
# runtime
2828
nodejs_24

0 commit comments

Comments
 (0)