From 2047ffe99089388a6b679f987cf6ebb9be917d52 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Sun, 5 May 2024 08:12:58 +0000 Subject: [PATCH] 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. --- nixos/tests/systemd-homed.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/systemd-homed.nix b/nixos/tests/systemd-homed.nix index ecc92e98eddc..5e723f676945 100644 --- a/nixos/tests/systemd-homed.nix +++ b/nixos/tests/systemd-homed.nix @@ -1,7 +1,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: let - password = "foobar"; - newPass = "barfoo"; + password = "foobarfoo"; + newPass = "barfoobar"; in { name = "systemd-homed";