diff options
-rw-r--r-- | system/prefect.nix | 6 |
1 files changed, 3 insertions, 3 deletions
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" ]; }; }; |