mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 06:57:30 +00:00
nixos/test-instrumentation: use file to set root password
This commit is contained in:
parent
c980ca6058
commit
4b128008c5
@ -207,7 +207,10 @@ in
|
||||
networking.usePredictableInterfaceNames = false;
|
||||
|
||||
# Make it easy to log in as root when running the test interactively.
|
||||
users.users.root.initialHashedPassword = mkOverride 150 "";
|
||||
# This needs to be a file because of a quirk in systemd credentials,
|
||||
# where you cannot specify an empty string as a value. systemd-sysusers
|
||||
# uses credentials to set passwords on users.
|
||||
users.users.root.hashedPasswordFile = mkOverride 150 "${pkgs.writeText "hashed-password.root" ""}";
|
||||
|
||||
services.xserver.displayManager.job.logToJournal = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user