From 0bae399d47c13e395add7eb438170a90a58f0c15 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sat, 1 Feb 2025 14:52:11 -0500 Subject: [PATCH] increase NAR limit to 800MB Signed-off-by: ahuston-0 --- utils/attic-push.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/attic-push.bash b/utils/attic-push.bash index 1855eb2..87b6b7a 100755 --- a/utils/attic-push.bash +++ b/utils/attic-push.bash @@ -7,7 +7,7 @@ set -e # retrieve all paths under 100M nix_paths=$(nix path-info --json --all --closure-size \ - | jq 'map_values(.closureSize | select(. < 1e8)) | to_entries | sort_by(.value)' \ + | jq 'map_values(.closureSize | select(. < 8e8)) | to_entries | sort_by(.value)' \ | jq 'map(.key) | join("\n")' | sed -E -e 's/\\n/\n/g;s/^"//g;s/"$//g') readarray -t nix_path_array < <(echo "$nix_paths")