Ran nix flake update and added required exception

This commit is contained in:
Gene Liverman 2025-11-03 21:18:24 -05:00
parent 8579650a4e
commit 26d6660023
2 changed files with 27 additions and 23 deletions

View file

@ -2,7 +2,11 @@
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ "olm-3.2.16" "electron-27.3.11" ];
permittedInsecurePackages = [
"electron-27.3.11"
"olm-3.2.16"
"python3.12-ecdsa-0.19.1"
];
};
overlays = [ inputs.nixpkgs-terraform.overlays.default ];
};