summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-01-21 06:02:51 -0500
committerseth <[email protected]>2024-01-21 06:02:51 -0500
commit854d1cc74b9411a0bfb0d574f5a4e7dcde28a1a6 (patch)
tree990c2efa0d366a2e4cadd33cb3a46334e2efc1c5 /flake.nix
parentf2b8170468e6e8e27ac844a768f1f7160d653cc9 (diff)
nix: use mkShellNoCC
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 149dac5..96cc880 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,7 +34,7 @@
pkgs,
...
}: {
- devShells.default = pkgs.mkShell {
+ devShells.default = pkgs.mkShellNoCC {
shellHook = ''
[ ! -d node_modules ] && pnpm install --frozen-lockfile
${config.pre-commit.installationScript}