allow unfree and unsupported CPUs
This commit is contained in:
parent
99cebc8faf
commit
76a5ad1af3
1 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,13 @@
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
system,
|
system,
|
||||||
}: let
|
}: let
|
||||||
pkgs = import nixpkgs {inherit system;};
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
allowUnsupportedSystem = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
ci = import nix-packages {inherit pkgs;};
|
ci = import nix-packages {inherit pkgs;};
|
||||||
isReserved = n: n == "lib" || n == "overlays" || n == "modules";
|
isReserved = n: n == "lib" || n == "overlays" || n == "modules";
|
||||||
in
|
in
|
||||||
|
|
Reference in a new issue