fixed nfs shares

This commit is contained in:
Leyla Becker 2025-03-10 17:55:00 -05:00
parent 682e911e3c
commit 9ef33d0d8b
3 changed files with 18 additions and 15 deletions

View file

@ -39,19 +39,19 @@
};
"/mnt/leyla_documents" = {
device = "defiant:/exports/leyla";
device = "defiant:/exports/leyla_documents";
fsType = "nfs";
options = ["x-systemd.automount" "user" "noatime" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
"/mnt/eve_documents" = {
device = "defiant:/exports/eve";
device = "defiant:/exports/eve_documents";
fsType = "nfs";
options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
"/mnt/users_documents" = {
device = "defiant:/exports/users";
device = "defiant:/exports/users_documents";
fsType = "nfs";
options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};