nixos/tests/sddm: Fix detecting login screen

Tesseract seems to have a hard time detecting the "ALICE FOOBAR" text,
so let's match on "Select your user and enter password" instead.

Ran the test on x86_64-linux and it now succeeds.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig bcaf2f6d 4007ee97

+1 -1
+1 -1
nixos/tests/sddm.nix
··· 24 24 user = nodes.machine.config.users.extraUsers.alice; 25 25 in '' 26 26 startAll; 27 - $machine->waitForText(qr/ALICE/); 27 + $machine->waitForText(qr/select your user/i); 28 28 $machine->screenshot("sddm"); 29 29 $machine->sendChars("${user.password}\n"); 30 30 $machine->waitForFile("/home/alice/.Xauthority");