Add NFS mount for /mnt/nfs_share from gaia (192.168.1.249)
This commit is contained in:
@@ -250,8 +250,16 @@ in
|
|||||||
"d /var/lib/usda-vision 0755 root root -"
|
"d /var/lib/usda-vision 0755 root root -"
|
||||||
"f /var/lib/usda-vision/.env 0644 root root -"
|
"f /var/lib/usda-vision/.env 0644 root root -"
|
||||||
"d /var/lib/supabase 0755 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
|
# Supabase CLI configuration - runs in writable directory
|
||||||
systemd.services.supabase-cli = {
|
systemd.services.supabase-cli = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user