[staging-next] lib.systems: force qemuArch to "aarch64" on aarch64 (#397889)

Emily 02f25b0d 6d156779

Changed files
+2
lib
systems
+2
lib/systems/default.nix
···
qemuArch =
if final.isAarch32 then
"arm"
else if final.isS390 && !final.isS390x then
null
else if final.isx86_64 then
···
qemuArch =
if final.isAarch32 then
"arm"
+
else if final.isAarch64 then
+
"aarch64"
else if final.isS390 && !final.isS390x then
null
else if final.isx86_64 then