From 98118dee608e25c8096d6c3ed79a62bed285f3a6 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 20 Jun 2022 16:25:29 +0200 Subject: prefect: don't abort startup when secondary mounts fail --- system/prefect.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'system/prefect.nix') diff --git a/system/prefect.nix b/system/prefect.nix index 059eff0c..4d62f94d 100644 --- a/system/prefect.nix +++ b/system/prefect.nix @@ -60,19 +60,19 @@ "/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" ]; }; }; -- cgit 1.4.1