Skip to content

Commit 304ecc9

Browse files
committed
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.
1 parent 6c38298 commit 304ecc9

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
@@ -18,7 +18,7 @@
1818
perSystem =
1919
{ pkgs, ... }:
2020
{
21-
devShells.default = pkgs.mkShell {
21+
devShells.default = pkgs.mkShellNoCC {
2222
buildInputs = with pkgs; [
2323
# runtime
2424
nodejs_24

0 commit comments

Comments
 (0)