diff --git a/modules/raspi/mount-data.nix b/modules/raspi/mount-data.nix index a9d7578..bbfdecc 100644 --- a/modules/raspi/mount-data.nix +++ b/modules/raspi/mount-data.nix @@ -23,25 +23,25 @@ fileSystems."/mnt/raspi" = { ]; }; -fileSystems."/mnt/raspi-data" = { - device = "raspberrypi.tail13f623.ts.net:/home/raspi/docker-data"; - fsType = "nfs4"; - options = [ - "nofail" - "_netdev" - "noatime" +# fileSystems."/mnt/raspi-data" = { +# device = "raspberrypi.tail13f623.ts.net:/home/raspi/docker-data"; +# fsType = "nfs4"; +# options = [ +# "nofail" +# "_netdev" +# "noatime" - # Don't mount until first access - "x-systemd.automount" +# # Don't mount until first access +# "x-systemd.automount" - # Unmount after 10 min idle - "x-systemd.idle-timeout=600" +# # Unmount after 10 min idle +# "x-systemd.idle-timeout=600" - # Give the Pi/Tailscale a little time to appear - "x-systemd.device-timeout=10s" +# # Give the Pi/Tailscale a little time to appear +# "x-systemd.device-timeout=10s" - # Explicitly use NFSv4.2 if supported - "nfsvers=4.2" - ]; -}; +# # Explicitly use NFSv4.2 if supported +# "nfsvers=4.2" +# ]; +# }; } \ No newline at end of file