From a39ed8aa5919edbb0ea4894087eae6fc577b942e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 27 Nov 2022 17:25:24 +0100 Subject: [PATCH] kexec-installer/test: also apply minimal profile to node1 --- nix/kexec-installer/test.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nix/kexec-installer/test.nix b/nix/kexec-installer/test.nix index 4e58747..1696886 100644 --- a/nix/kexec-installer/test.nix +++ b/nix/kexec-installer/test.nix @@ -14,7 +14,12 @@ in makeTest' { }; nodes = { - node1 = { ... }: { + node1 = { modulesPath, ... }: { + environment.noXlibs = false; # avoid recompilation + imports = [ + (modulesPath + "/profiles/minimal.nix") + ]; + virtualisation.vlans = [ ]; virtualisation.memorySize = 2 * 1024 + 512; virtualisation.diskSize = 4 * 1024;