From 5d53c11d6baa585fc44da98b189ac13b2e4ce934 Mon Sep 17 00:00:00 2001 From: Julien Marquet Date: Tue, 1 Feb 2022 22:02:39 +0100 Subject: [PATCH] fix: downgrade nodejs version to avoid lock issues --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 80ddc98..621e568 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,5 @@ { pkgs ? import ./nix {} }: pkgs.npmlock2nix.shell { src = ./.; + nodejs = pkgs.nodejs-12_x; }