From 9d9d7b27572343291b6402205ad5ee5ffff96ecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 5 Jul 2022 21:31:10 +0200 Subject: [PATCH] hydra: fix max output size --- hosts/hydra/hydra.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hydra/hydra.nix b/hosts/hydra/hydra.nix index 4e84f97d..06ca2647 100644 --- a/hosts/hydra/hydra.nix +++ b/hosts/hydra/hydra.nix @@ -97,7 +97,7 @@ binary_cache_secret_key_file = ${key} evaluator_workers = 4 evaluator_max_memory_size = 2048 - max_output_size = ${toString (4*1024*1024)} # sd card and raw images + max_output_size = ${toString (4*1024*1024*1024)} # sd card and raw images store_uri = auto?secret-key=${key}&write-nar-listing=1&ls-compression=zstd&log-compression=zstd upload_logs_to_binary_cache = true '';