nix: allow electron-25.9.0

This commit is contained in:
notohh 2023-12-23 16:29:10 -05:00
parent 5bb41b22b4
commit 395f406973
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -1,7 +1,12 @@
{...}: {
{
lib,
pkgs,
...
}: {
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = lib.optional (pkgs.obsidian.version == "1.4.16") "electron-25.9.0";
};
};