1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-26 07:43:45 +01:00

fix: add required key permittedInsecurePackages

This commit is contained in:
Thomas Boerger 2022-09-29 12:01:06 +02:00
parent 27870ad230
commit d4ddde3fd1
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B

@ -39,6 +39,10 @@ with lib;
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-11.5.0"
];
};
};
};