prefect: don't abort startup when secondary mounts fail
Alan Pearce alan@alanpearce.eu
Mon, 20 Jun 2022 16:25:29 +0200
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M system/prefect.nix → system/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" ]; }; };