enable more insecure packages

This commit is contained in:
陈浩南 2023-08-14 20:09:57 +08:00
parent fff2ec5c38
commit 348dd4df4f

View File

@ -96,7 +96,10 @@ inputs:
nix.settings.extra-sandbox-paths = [ inputs.config.programs.ccache.cacheDir ];
nixpkgs.config =
{
permittedInsecurePackages = [ "openssl-1.1.1v" "electron-19.0.7" "nodejs-16.20.1" ];
permittedInsecurePackages = with inputs.pkgs;
[
openssl_1_1.name electron_19.name nodejs-16_x.name python2.name
];
allowUnfree = true;
};
}