feat(nix): use stable nix, don't allow broken and insecure packages
This commit is contained in:
parent
18065c691c
commit
eae8f1319e
2 changed files with 3 additions and 5 deletions
|
@ -9,12 +9,11 @@ in {
|
|||
nixpkgs.overlays = builtins.attrValues (import ../../overlays);
|
||||
|
||||
nixpkgs.config = {
|
||||
allowBroken = true;
|
||||
allowBroken = false;
|
||||
allowUnfree = true;
|
||||
|
||||
permittedInsecurePackages = [
|
||||
"electron-17.4.1"
|
||||
];
|
||||
permittedInsecurePackages = [ ];
|
||||
};
|
||||
|
||||
nix.settings = {
|
||||
experimental-features =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue