nix config
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

nofail to external harddrives

+15
+15
hosts/box/hardware-configuration.nix
··· 30 30 { 31 31 device = "/dev/disk/by-uuid/0f857c6e-509d-436f-9e78-bc25f1b0d23b"; 32 32 fsType = "ext4"; 33 + options = [ 34 + "noatime" 35 + "nodiratime" 36 + "nofail" 37 + ]; 33 38 }; 34 39 35 40 fileSystems."/mnt/two" = 36 41 { 37 42 device = "/dev/disk/by-uuid/5bc894bf-ed87-4c30-aab4-87e154e0cd08"; 38 43 fsType = "ext4"; 44 + options = [ 45 + "noatime" 46 + "nodiratime" 47 + "nofail" 48 + ]; 39 49 }; 40 50 41 51 fileSystems."/mnt/three" = 42 52 { 43 53 device = "/dev/disk/by-uuid/0be3ded1-9c8b-40aa-94ca-dc2297d5988e"; 44 54 fsType = "ext4"; 55 + options = [ 56 + "noatime" 57 + "nodiratime" 58 + "nofail" 59 + ]; 45 60 }; 46 61 47 62 swapDevices =