nixos/tests/luksroot: Fix OCR of passphrase prompt

Since a9d69a74d6edb6bcca29b1189d4bc3b203ecaf25, the passphrase prompt
now no longer starts with "Enter passphrase for" but now it's just
"Passphrase for", which causes the luksroot installer test to fail.

I've tested this on a x86_64-linux machine and the test now succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @oxij, @samueldr
Issue: #29441

aszlig f51dc2a9 2cf2ea1c

+1 -1
+1 -1
nixos/tests/installer.nix
··· 467 enableOCR = true; 468 preBootCommands = '' 469 $machine->start; 470 - $machine->waitForText(qr/Enter passphrase/); 471 $machine->sendChars("supersecret\n"); 472 ''; 473 };
··· 467 enableOCR = true; 468 preBootCommands = '' 469 $machine->start; 470 + $machine->waitForText(qr/Passphrase for/); 471 $machine->sendChars("supersecret\n"); 472 ''; 473 };