From 482da791bfe649278e988f7414a322d7a43897c9 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Fri, 15 Aug 2025 15:43:01 -0400 Subject: [PATCH] nixos/tests/initrd-network-ssh: Explicitly disable systemd stage 1 --- nixos/tests/initrd-network-ssh/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/initrd-network-ssh/default.nix b/nixos/tests/initrd-network-ssh/default.nix index 510a9f7ef4e5..60b888b69a86 100644 --- a/nixos/tests/initrd-network-ssh/default.nix +++ b/nixos/tests/initrd-network-ssh/default.nix @@ -1,3 +1,5 @@ +# This tests SSH in scripted stage 1. Remove in 26.11. + import ../make-test-python.nix ( { lib, pkgs, ... }: @@ -14,6 +16,7 @@ import ../make-test-python.nix ( boot.kernelParams = [ "ip=${config.networking.primaryIPAddress}:::255.255.255.0::eth1:none" ]; + boot.initrd.systemd.enable = false; boot.initrd.network = { enable = true; ssh = {