fix(flake): upgrade to Nodejs 24

This ensures consistency with the main server build.
This commit is contained in:
FliegendeWurst 2025-11-14 08:53:40 +01:00
parent 78901e03d7
commit 80313527c5

View File

@ -22,7 +22,7 @@
let
pkgs = import nixpkgs { inherit system; };
electron = pkgs."electron_${lib.versions.major packageJsonDesktop.devDependencies.electron}";
nodejs = pkgs.nodejs_22;
nodejs = pkgs.nodejs_24;
# pnpm creates an overly long PATH env variable for child processes.
# This patch deduplicates entries in PATH, which results in an equivalent but shorter entry.
# https://github.com/pnpm/pnpm/issues/6106