diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-08-10 22:51:25 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-08-10 22:51:25 +0700 |
| commit | ea52aa622ff5c4c522ccd159da38a957f88f46eb (patch) | |
| tree | c8cc5d64608c2a52e72f17426646e23dbcd371b7 /nixos/modules/system | |
| parent | b592a7d0e626dbd328a2731ed061322f86669047 (diff) | |
upd
Diffstat (limited to 'nixos/modules/system')
| -rw-r--r-- | nixos/modules/system/nix/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
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 = { |
