From 0e333ed19bccb5bb816ffb09de18edf16e8f473b Mon Sep 17 00:00:00 2001 From: UGA Innovation Factory Date: Thu, 18 Dec 2025 21:11:50 -0500 Subject: [PATCH] Enable NFS client (rpcbind) and update mount options --- default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 6f3faac..58dbe52 100644 --- a/default.nix +++ b/default.nix @@ -201,6 +201,7 @@ in htop curl wget + nfs-utils # Docker and Docker Compose for running usda-vision docker @@ -253,11 +254,14 @@ in "d /mnt/nfs_share 0755 root root -" ]; + # Enable NFS client support + services.rpcbind.enable = true; + # NFS mount for shared storage fileSystems."/mnt/nfs_share" = { device = "192.168.1.249:/mnt/nfs_share"; fsType = "nfs"; - options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" ]; + options = [ "nfsvers=4" "rw" "soft" "intr" ]; }; # Supabase CLI configuration - runs in writable directory