From 21f822e5aa94275eadd4ebe4a1f576ecba9e08cc Mon Sep 17 00:00:00 2001 From: chn Date: Sat, 22 Jun 2024 16:04:24 +0800 Subject: [PATCH] system.nix: enable ca-derivations --- modules/system/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/nix.nix b/modules/system/nix.nix index 9495e188..65faf342 100644 --- a/modules/system/nix.nix +++ b/modules/system/nix.nix @@ -33,7 +33,7 @@ inputs: nix.settings = { system-features = [ "big-parallel" "nixos-test" "benchmark" ]; - experimental-features = [ "nix-command" "flakes" ]; + experimental-features = [ "nix-command" "flakes" "ca-derivations" ]; keep-failed = true; max-substitution-jobs = 4; trusted-public-keys = [ "chn:Cc+nowW1LIpe1kyXOZmNaznFDiH1glXmpb4A+WD/DTE=" ];