all repos — nixfiles @ 98118dee608e25c8096d6c3ed79a62bed285f3a6

System and user configuration, managed by nix and home-manager

prefect: don't abort startup when secondary mounts fail
Alan Pearce alan@alanpearce.eu
Mon, 20 Jun 2022 16:25:29 +0200
commit

98118dee608e25c8096d6c3ed79a62bed285f3a6

parent

a7c1510db4e6b8876eae2714cc541b4adb0fb8f9

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -60,19 +60,19 @@ "/home".options = [ "atgc" "gc_merge" "lazytime" ];     "/mnt/data" = {
       device = "/dev/disk/by-uuid/52E422C5E422AAE5";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "x-systemd-automount" ];
+      options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ];
     };
 
     "/mnt/games" = {
       device = "/dev/disk/by-partlabel/games";
       fsType = "ntfs3";
-      options = [ "uid=1000" "gid=100" "x-systemd-automount" ];
+      options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ];
     };
 
     "/mnt/windows" = {
       device = "/dev/disk/by-partlabel/windows";
       fsType = "ntfs3";
-      options = [ "nofail" ];
+      options = [ "x-systemd-automount" "nofail" ];
     };
   };