mount boot drives with the nofail option

One drive failure shouldn't block the entire boot
This commit is contained in:
Rouven Seifert 2024-04-14 11:39:11 +02:00
parent be638b274d
commit 4b173581dc
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

View file

@ -44,11 +44,13 @@
{ {
device = "/dev/disk/by-uuid/3278-8D00"; device = "/dev/disk/by-uuid/3278-8D00";
fsType = "vfat"; fsType = "vfat";
options = [ "nofail" ];
}; };
fileSystems."/boot2" = fileSystems."/boot2" =
{ {
device = "/dev/disk/by-uuid/3366-F71E"; device = "/dev/disk/by-uuid/3366-F71E";
fsType = "vfat"; fsType = "vfat";
options = [ "nofail" ];
}; };
swapDevices = [ ]; swapDevices = [ ];