From 76a5ad1af318fdbbb26bb5f27c359514672fc7ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Sat, 21 Jan 2023 12:14:25 +0100 Subject: [PATCH] allow unfree and unsupported CPUs --- hydra/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hydra/default.nix b/hydra/default.nix index 7f6c6a2..93f39c8 100644 --- a/hydra/default.nix +++ b/hydra/default.nix @@ -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