From 11cb49af766acfff726e112e483ebc8602139914 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 14 Feb 2024 10:48:41 -0700 Subject: [PATCH] shell/system76-docs update: change from nodejs 16 to 18 as 16 is EOL --- shell/system76-docs/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/system76-docs/shell.nix b/shell/system76-docs/shell.nix index 7060e9e..bb0ad96 100644 --- a/shell/system76-docs/shell.nix +++ b/shell/system76-docs/shell.nix @@ -1,7 +1,7 @@ { pkgs ? import {} }: pkgs.mkShell { nativeBuildInputs = with pkgs; [ - nodejs-16_x + nodejs-18_x nodePackages.npm ]; }