From ea52aa622ff5c4c522ccd159da38a957f88f46eb Mon Sep 17 00:00:00 2001 From: seraphim <18ycm9tx@anonaddy.me> Date: Mon, 10 Aug 2026 22:51:25 +0700 Subject: upd --- nixos/modules/system/nix/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'nixos/modules/system/nix') diff --git a/nixos/modules/system/nix/default.nix b/nixos/modules/system/nix/default.nix index 9cefbf5..a02cb6f 100644 --- a/nixos/modules/system/nix/default.nix +++ b/nixos/modules/system/nix/default.nix @@ -3,7 +3,12 @@ { # Nix itself: enable the flake + nix-command features this config relies on. nix.settings.experimental-features = [ "nix-command" "flakes" ]; - nixpkgs.config.allowUnfree = true; + nixpkgs.config = { + allowUnfree = true; + permittedInsecurePackages = [ + "electron-39.8.10" + ]; + }; # Automatic garbage collection — drop builds older than a week. nix.gc = { -- cgit v1.2.3