@cryptotaxi247 / infra / commits / 2325d8ef

Enable ca-derivations

Eelco Dolstra committed Apr 20, 2021 at 13:31 UTC 2325d8ef28f6f66d81bc074bd40b09b031510bad
1 file changed +7 -1
ngi0/hydra/hydra.nix
+7 -1
@@ -1,4 +1,4 @@
1 -{ config, pkgs, ... }:
1 +{ config, lib, pkgs, ... }:
2
3 let
4 narCache = "/var/cache/hydra/nar-cache";
@@ -44,4 +44,10 @@ in
44
45 max_concurrent_evals = 2
46 '';
47 +
48 + nix.extraOptions = lib.mkForce
49 + ''
50 + experimental-features = nix-command flakes ca-references ca-derivations
51 + '';
52 +
53 }