diff options
author | Ben Sima <bsima@groq.com> | 2022-02-11 09:37:49 -0800 |
---|---|---|
committer | Ben Sima <bsima@groq.com> | 2022-02-11 09:37:49 -0800 |
commit | f97913facc7eac3983a73985b266a149c4adab5e (patch) | |
tree | 85e79611a2944dc1fe5bafd635bc6288c4dec9b4 | |
parent | 14f9629ad2c2d37183bc8f8dd4776545322b8bc0 (diff) |
allow insecure electron (don't know why i need it but w/e)
-rw-r--r-- | lib/config.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/config.nix b/lib/config.nix index 7bdd27b..a0f7ea0 100644 --- a/lib/config.nix +++ b/lib/config.nix @@ -2,4 +2,7 @@ allowUnfree = true; allowBroken = true; allowUnsupportedSystem = true; + permittedInsecurePackages = [ + "electron-13.6.9" + ]; } |