nixos/homed: fix test

By default, systemd-homed has a password policy that requires user
passwords to be greater than or equal to 8 characters.
This commit is contained in:
Jared Baur 2024-05-05 08:12:58 +00:00
parent 3f7095163e
commit 2047ffe990
No known key found for this signature in database

View File

@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, lib, ... }:
let
password = "foobar";
newPass = "barfoo";
password = "foobarfoo";
newPass = "barfoobar";
in
{
name = "systemd-homed";