diff --git a/dotfiles/systems/desktop/filesystems.nix b/dotfiles/systems/desktop/filesystems.nix index c27ccf6a..6b8450c4 100644 --- a/dotfiles/systems/desktop/filesystems.nix +++ b/dotfiles/systems/desktop/filesystems.nix @@ -17,8 +17,14 @@ }; "/mnt/iscsi/joey-desktop" = { - device = "/dev/disk/by-uuid/7446B1DB46B19DF4"; - fsType = "ntfs3"; + device = "/dev/disk/by-uuid/7446B1DB46B19DF4"; + fsType = "ntfs3"; + options = [ + "nofail" + "auto" + "users" + "x-systemd.automount" + ]; }; }; @@ -43,4 +49,4 @@ }; swapDevices = [ { device = "/dev/disk/by-uuid/73e8e737-1c5c-4ead-80c6-e616be538145"; } ]; -} \ No newline at end of file +}