We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809d960 commit 9f0adb9Copy full SHA for 9f0adb9
mirror-nixos-branch.pl
@@ -214,8 +214,12 @@ sub fetch {
214
downloadFile("nixpkgs.tarball", "packages.json.br", "json-br");
215
downloadFile("nixos.options", "options.json.br", "json-br");
216
217
- downloadFile("nixos.iso_minimal.aarch64-linux");
218
- downloadFile("nixos.iso_minimal.x86_64-linux");
+ # Minimal installer ISOs were dropped from the small channel
+ if ($channelName !~ /-small/ ||
219
+ $channelName =~ /nixos-2([0123]\...|4\.05)-small/) {
220
+ downloadFile("nixos.iso_minimal.aarch64-linux");
221
+ downloadFile("nixos.iso_minimal.x86_64-linux");
222
+ }
223
224
# All of these jobs are not present in small channels
225
if ($channelName !~ /-small/) {
0 commit comments