Fsight : Hardcode drive paths because of msdos part table.

This commit is contained in:
Dmitry Voronin 2024-02-22 23:41:27 +03:00
parent faad8e5d9c
commit b46db84de9

View file

@ -8,6 +8,15 @@
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
fileSystems."/" = lib.mkForce {
device = "/dev/sda2";
fsType = "ext4";
};
fileSystems."/boot" = lib.mkForce {
device = "/dev/sda1";
fsType = "vfat";
};
# Root password.
users.users.root.hashedPassword = lib.mkForce "$y$j9T$d4HfwutZr.eNHuLJYRuro/$7swZfgCNS6jEXHFCxsW5um/68jX9BRiiZD1BYcm/gD/";
}