allow unfree and unsupported CPUs

This commit is contained in:
Charlotte 🦝 Delenk 2023-01-21 12:14:25 +01:00
parent 99cebc8faf
commit 76a5ad1af3
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -3,7 +3,13 @@
nixpkgs,
system,
}: let
pkgs = import nixpkgs {inherit system;};
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
allowUnsupportedSystem = true;
};
};
ci = import nix-packages {inherit pkgs;};
isReserved = n: n == "lib" || n == "overlays" || n == "modules";
in