From 7d6ee8ce1e3bdc37f00e2b483cc2842f978fabe9 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 13 Sep 2023 17:00:05 +0200 Subject: [PATCH] nixos/tests/shadow: test hashedPasswordFile --- nixos/tests/shadow.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/shadow.nix b/nixos/tests/shadow.nix index c9a04088e87..a027af7e450 100644 --- a/nixos/tests/shadow.nix +++ b/nixos/tests/shadow.nix @@ -32,7 +32,7 @@ in import ./make-test-python.nix ({ pkgs, ... }: { }; users.berta = { isNormalUser = true; - hashedPassword = hashed_bcrypt; + hashedPasswordFile = (pkgs.writeText "hashed_bcrypt" hashed_bcrypt).outPath; shell = pkgs.bash; }; users.yesim = {