nixos/image/images: fix sd-card image on aarch64 (#372783)

This commit is contained in:
Arian van Putten
2025-02-17 15:04:27 +01:00
committed by GitHub
+1 -1
View File
@@ -45,7 +45,7 @@ let
sd-card = {
imports =
let
module = ../. + "/installer/sd-card/sd-image-${pkgs.targetPlatform.linuxArch}.nix";
module = ../. + "/installer/sd-card/sd-image-${pkgs.targetPlatform.qemuArch}.nix";
in
if builtins.pathExists module then [ module ] else throw "The module ${module} does not exist.";
};