From 7e04a534ad19b31448c98550bcd3d9c51eb1cd06 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Sun, 6 Jul 2025 21:08:51 -0700 Subject: [PATCH] nixosTests.kexec: fix test The kexec test has been broken since 878922a902c79fccf7bb606e18a1dc54eb1dcb61, which breaks the read-only package-set enforcement that tests have. --- nixos/tests/kexec.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nixos/tests/kexec.nix b/nixos/tests/kexec.nix index e06d39a8d826..0e40796a86c0 100644 --- a/nixos/tests/kexec.nix +++ b/nixos/tests/kexec.nix @@ -21,11 +21,7 @@ { virtualisation.vlans = [ ]; environment.systemPackages = [ pkgs.hello ]; - imports = [ - "${modulesPath}/installer/netboot/netboot-minimal.nix" - "${modulesPath}/testing/test-instrumentation.nix" - "${modulesPath}/profiles/qemu-guest.nix" - ]; + imports = [ "${modulesPath}/installer/netboot/netboot.nix" ]; }; };