From 2ee35e1fcecdae598651fd9b1452f451ac221384 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Thu, 3 Sep 2020 15:58:10 +0200 Subject: [PATCH] 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. --- lib/systems/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systems/default.nix b/lib/systems/default.nix index f6832945a23d..e31a8e65f2a0 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -83,7 +83,7 @@ rec { if final.isAarch32 then "arm" else if final.isAarch64 then "arm64" else if final.isx86_32 then "x86" - else if final.isx86_64 then "ia64" + else if final.isx86_64 then "x86" else if final.isMips then "mips" else final.parsed.cpu.name;