3
0
Fork 0
forked from mirrors/nixpkgs

NixOS ISO: Set empty root password

This commit is contained in:
Eelco Dolstra 2014-05-21 12:04:08 +02:00
parent e135e6b35b
commit 48768f3129

View file

@ -39,6 +39,9 @@ with lib;
# Add Memtest86+ to the CD.
boot.loader.grub.memtest86.enable = true;
# Get a console as soon as the initrd loads fbcon on EFI boot
# Get a console as soon as the initrd loads fbcon on EFI boot.
boot.initrd.kernelModules = [ "fbcon" ];
# Allow the user to log in as root without a password.
security.initialRootPassword = "";
}