From e60588d3400e8ad018fc293cd333a9e66bfe6e0c Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Wed, 24 May 2023 20:09:44 +0200 Subject: [PATCH] Allow installation of old software --- config.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/config.nix b/config.nix index 1325cb0..37a7f0d 100644 --- a/config.nix +++ b/config.nix @@ -1,8 +1,12 @@ { - # Remove after 2023-09-11 - # See: https://github.com/NixOS/nixpkgs/commit/f68ae132f843f17e4a3fb881e49b032026450d48 - # See: https://nodejs.org/en/blog/announcements/nodejs16-eol permittedInsecurePackages = [ + # Remove after 2023-09-11 + # See: https://github.com/NixOS/nixpkgs/commit/f68ae132f843f17e4a3fb881e49b032026450d48 + # See: https://nodejs.org/en/blog/announcements/nodejs16-eol "nodejs-16.20.0" + # Still in use by one customer + "nodejs-14.21.3" + # Used by nodejs 14 + "openssl-1.1.1t" ]; }