From a261a22e18f6d98c46a7e6135f0c20ae3f915022 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Fri, 15 Aug 2025 15:43:01 -0400 Subject: [PATCH] nixos/tests/boot-stage1: Explicitly disable systemd stage 1 --- nixos/tests/boot-stage1.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/tests/boot-stage1.nix b/nixos/tests/boot-stage1.nix index e76af3e1dc6f..2fda8355086a 100644 --- a/nixos/tests/boot-stage1.nix +++ b/nixos/tests/boot-stage1.nix @@ -1,3 +1,6 @@ +# Remove in 26.11. This test guards against problems with +# stage-1-init.sh, which will be removed with scripted stage 1. + { pkgs, ... }: { name = "boot-stage1"; @@ -10,6 +13,8 @@ ... }: { + boot.initrd.systemd.enable = false; + boot.extraModulePackages = let compileKernelModule =