NixOS:nixos-rebuild build-vm: Difference between revisions

imported>Liberatys
mNo edit summary
imported>Korfuri
initialPassword makes the password immediately usable; previously, with initialHashedPassword the user would have needed to hash it and this wasn't indicated
Line 10: Line 10:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
users.users.nixosvmtest.initialHashedPassword = "test";
users.users.nixosvmtest.initialPassword = "test";
</syntaxhighlight>
</syntaxhighlight>