lib/systems: fix kernelArch for x86_64

IA64 (Itanium) is something completely different and certainly not
what we want! x86_64 code lives in arch/x86 just like "classic" x86.

+1 -1
+1 -1
lib/systems/default.nix
··· 83 83 if final.isAarch32 then "arm" 84 84 else if final.isAarch64 then "arm64" 85 85 else if final.isx86_32 then "x86" 86 - else if final.isx86_64 then "ia64" 86 + else if final.isx86_64 then "x86" 87 87 else if final.isMips then "mips" 88 88 else final.parsed.cpu.name; 89 89