Skip to content

Commit ae58614

Browse files
authored
chore(nix): use mkShellNoCC for lighter devShell (#98)
Switch from mkShell to mkShellNoCC since this development environment only uses Python and Node.js tools. The C compiler (stdenv) is not needed, resulting in fewer dependencies and faster shell activation.
1 parent d8b0234 commit ae58614

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
@@ -89,7 +89,7 @@
8989
};
9090
};
9191

92-
devShells.default = pkgs.mkShell {
92+
devShells.default = pkgs.mkShellNoCC {
9393
buildInputs = with pkgs; [
9494
uv
9595
ty

0 commit comments

Comments
 (0)