migrate lego to dnsimple #7

Merged
ahuston-0 merged 2 commits from feature/lego into main 2025-02-27 01:14:41 -05:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit b5f47c5638 - Show all commits

View File

@ -5,12 +5,12 @@
substituters = [
"https://cache.nixos.org/?priority=1&want-mass-query=true"
"https://nix-community.cachix.org/?priority=10&want-mass-query=true"
"https://attic.alicehuston.xyz/nix-cache"
"https://attic.nayeonie.com/nix-cache"
];
trusted-substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://attic.alicehuston.xyz/nix-cache"
"https://attic.nayeonie.com/nix-cache"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="

View File

@ -5,9 +5,9 @@
#set -v
set -e
# retrieve all paths under 100M
# retrieve all paths under 2G
nix_paths=$(nix path-info --json --all --closure-size \
| jq 'map_values(.closureSize | select(. < 5e8)) | to_entries | sort_by(.value)' \
| jq 'map_values(.closureSize | select(. < 2e9)) | 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")