From cc2c513494b84d7976856b0dff111ea10d4a07ca Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 29 Oct 2023 05:31:00 -0400 Subject: [PATCH] nix: permit electron24 --- modules/nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/nix.nix b/modules/nix.nix index c4dade6..7df94ca 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -2,6 +2,9 @@ nixpkgs = { config = { allowUnfree = true; + permittedInsecurePackages = [ + "electron-24.8.6" + ]; }; overlays = [inputs.prismlauncher.overlays.default]; };