From b24f4adf618c55d90b1ce9eecd0ecaf1df28e5a9 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 29 Feb 2024 22:45:21 -0500 Subject: [PATCH] permit insecure electron --- nixos76/system/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos76/system/configuration.nix b/nixos76/system/configuration.nix index e1830e5..d91f88d 100644 --- a/nixos76/system/configuration.nix +++ b/nixos76/system/configuration.nix @@ -14,6 +14,10 @@ nix.settings.experimental-features = [ "nix-command" "flakes" ]; nixpkgs.config.allowUnfree = true; + nixpkgs.config.permittedInsecurePackages = [ + "electron-25.9.0" + ]; + hardware.system76.enableAll = true;