Merge pull request #120439 from wamserma/arg-usage-release-nix

nixos: use supportedSystems instead of hardcoded list for netboot

authored by

John Ericson and committed by
GitHub
74f3ae80 f1b5b746

+1 -1
+1 -1
nixos/release.nix
··· 138 138 # Build the initial ramdisk so Hydra can keep track of its size over time. 139 139 initialRamdisk = buildFromConfig ({ ... }: { }) (config: config.system.build.initialRamdisk); 140 140 141 - netboot = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system: makeNetboot { 141 + netboot = forMatchingSystems supportedSystems (system: makeNetboot { 142 142 module = ./modules/installer/netboot/netboot-minimal.nix; 143 143 inherit system; 144 144 });