chore: add nofail to drives in hardware-configuration

This commit is contained in:
Alexandre Cavalheiro 2024-05-21 15:55:26 -03:00
parent c9d97cb295
commit 1cd7394029
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -25,16 +25,19 @@
fileSystems."/mnt/ssd" = {
device = "/dev/disk/by-uuid/f27f2224-d351-46fd-89f5-991de36166ad";
fsType = "ext4";
options = [ "defaults" "nofail" ];
};
fileSystems."/mnt/internal" = {
device = "/dev/disk/by-uuid/b8541c0d-9146-4388-b217-431f196957cc";
fsType = "ext4";
options = [ "defaults" "nofail" ];
};
fileSystems."/mnt/media" = {
device = "/dev/disk/by-uuid/52c17b8b-46c1-4870-b86c-c3b9f4bd4434";
fsType = "ext4";
options = [ "defaults" "nofail" ];
};
swapDevices = [ ];