Add NFS mount for /mnt/nfs_share from gaia (192.168.1.249)

This commit is contained in:
UGA Innovation Factory
2025-12-18 21:07:15 -05:00
parent d76ccbb2c6
commit 8dd6aa5edf

View File

@@ -250,8 +250,16 @@ in
"d /var/lib/usda-vision 0755 root root -"
"f /var/lib/usda-vision/.env 0644 root root -"
"d /var/lib/supabase 0755 root root -"
"d /mnt/nfs_share 0755 root root -"
];
# 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" ];
};
# Supabase CLI configuration - runs in writable directory
systemd.services.supabase-cli = {
enable = true;