forked from DGNum/liminix
default root device in recovery to sda1
It will probably work fine for USB-stick boot (except in the case where there is > 1 usb device plugged in, so maybe don't do that) It doesn't matter for TFTP boot because boot.scr overrides the root= param anyway
This commit is contained in:
parent
b09723345c
commit
de51bfe13d
1 changed files with 3 additions and 0 deletions
|
@ -69,6 +69,9 @@ in rec {
|
|||
mnt = dir {};
|
||||
};
|
||||
rootfsType = "squashfs";
|
||||
# sda is most likely correct for the boot-from-USB case. For tftp
|
||||
# it's overridden by the boot.scr anyway, so maybe it all works out
|
||||
hardware.rootDevice = "/dev/sda1";
|
||||
users.root = {
|
||||
# the password is "secret". Use mkpasswd -m sha512crypt to
|
||||
# create this hashed password string
|
||||
|
|
Loading…
Reference in a new issue