From c87615a31913f97cb901c470c669a76d3966dac1 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 19 May 2025 11:47:03 +0300 Subject: [PATCH] nixos/tests/installer: fix eval --- nixos/tests/installer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 30496a51e171..6c7b97d055bc 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -651,7 +651,7 @@ let # put global maintainers here, individuals go into makeInstallerTest fkt call maintainers = (meta.maintainers or [ ]); # non-EFI tests can only run on x86 - platforms = lib.mkIf (!isEfi) [ + platforms = mkIf (!isEfi) [ "x86_64-linux" "x86_64-darwin" "i686-linux"