From 6a6304a3a6ae38a3d13591da00f911c12d409347 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Mon, 30 Dec 2024 23:36:19 -0800 Subject: Fix NFS bind mount dependency --- hosts/arrakis/hardware-configuration.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'hosts/arrakis/hardware-configuration.nix') diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index a812c40..0768e5c 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -23,37 +23,28 @@ fileSystems."/srv/nfs/keepers" = { device = "/data/home/nipsy/downloads/keepers"; + fsType = "none"; options = [ "bind" - "defaults" - "noauto" - "nofail" "x-systemd.requires=/data" - "x-systemd.automount" ]; }; fileSystems."/srv/nfs/movies" = { device = "/data/home/nipsy/downloads/movies"; + fsType = "none"; options = [ "bind" - "defaults" - "noauto" - "nofail" "x-systemd.requires=/data" - "x-systemd.automount" ]; }; fileSystems."/srv/nfs/tv" = { device = "/data/home/nipsy/downloads/tv"; + fsType = "none"; options = [ "bind" - "defaults" - "noauto" - "nofail" "x-systemd.requires=/data" - "x-systemd.automount" ]; }; -- cgit v1.2.3