From eb2ad6029ec9fbb9b99c16a9e0358429b7cd43dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 26 Sep 2024 17:43:24 +0200 Subject: [PATCH] drop nixlibs from test --- nix/kexec-installer/test.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nix/kexec-installer/test.nix b/nix/kexec-installer/test.nix index e5a3bb3..a756e14 100644 --- a/nix/kexec-installer/test.nix +++ b/nix/kexec-installer/test.nix @@ -11,9 +11,8 @@ pkgs.testers.runNixOSTest { }; nodes = { - node1 = { modulesPath, ... }: { + node1 = { modulesPath, pkgs, ... }: { virtualisation.vlans = [ ]; - environment.noXlibs = false; # avoid recompilation imports = [ (modulesPath + "/profiles/minimal.nix") ]; @@ -66,6 +65,9 @@ pkgs.testers.runNixOSTest { }; }; }; + } // lib.optionalAttrs (lib.versionOlder lib.version "24.11pre") { + # avoid second overlay + environment.noXlibs = false; }; };