added more config for nfs mounts

This commit is contained in:
Leyla Becker 2025-03-09 14:10:50 -05:00
parent f5c67b812f
commit 1e98b54454
6 changed files with 27 additions and 10 deletions

View file

@ -38,23 +38,29 @@
fsType = "vfat";
};
"/mnt/leyla_home" = {
"/mnt/leyla_documents" = {
device = "defiant:/exports/leyla";
fsType = "nfs";
options = ["x-systemd.automount" "user" "noatime" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
"/mnt/eve_home" = {
"/mnt/eve_documents" = {
device = "defiant:/exports/eve";
fsType = "nfs";
options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
"/mnt/users_home" = {
"/mnt/users_documents" = {
device = "defiant:/exports/users";
fsType = "nfs";
options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
"/mnt/media" = {
device = "defiant:/exports/media";
fsType = "nfs";
options = ["user" "noatime" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"];
};
};
environment.systemPackages = with pkgs; [