From 6931d600217b689a39d101649fa18d5d10781bbe Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Wed, 5 Feb 2025 17:41:54 -0800 Subject: [PATCH] Fix: Make iscsi drive explicitly non-required for boot. --- dotfiles/systems/desktop/filesystems.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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 +}