added nfs mount points for defiant to horizon

This commit is contained in:
Leyla Becker 2024-09-18 18:45:51 -05:00
parent c2d9b77eef
commit f74787c639

View file

@ -38,20 +38,48 @@
}; };
"/mnt/leyla_home" = "/mnt/leyla_home" =
{
device = "defiant:/home/leyla";
fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
"/mnt/eve_home" =
{
device = "defiant:/home/eve";
fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
"/mnt/ester_home" =
{
device = "defiant:/home/ester";
fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
"/mnt/users_home" =
{
device = "defiant:/home/users";
fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
"/mnt/legacy_leyla_home" =
{ {
device = "server.arpa:/home/leyla"; device = "server.arpa:/home/leyla";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ]; options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
}; };
"/mnt/share_home" = "/mnt/legacy_share_home" =
{ {
device = "server.arpa:/home/share"; device = "server.arpa:/home/share";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ]; options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
}; };
"/mnt/docker_home" = "/mnt/legacy_docker_home" =
{ {
device = "server.arpa:/home/docker"; device = "server.arpa:/home/docker";
fsType = "nfs"; fsType = "nfs";