From c9fd2f4d873fe4ee3eb99233b2a997900da6fb84 Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 24 Jun 2025 15:41:57 +0100 Subject: [PATCH] lib/systems: remove redundant conditional --- lib/systems/platforms.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/systems/platforms.nix b/lib/systems/platforms.nix index d34eed4c38b9..e230888d9fcb 100644 --- a/lib/systems/platforms.nix +++ b/lib/systems/platforms.nix @@ -632,8 +632,6 @@ rec { else if platform.isPower64 then if platform.isLittleEndian then powernv else ppc64 - else if platform.isLoongArch64 then - loongarch64-multiplatform else { }; }