From a3d065d674b0ba31a658812a6f56d37a66662976 Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Wed, 12 Feb 2025 21:34:48 -0600 Subject: [PATCH] renamed mounts on horizon --- .../nixos/horizon/hardware-configuration.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configurations/nixos/horizon/hardware-configuration.nix b/configurations/nixos/horizon/hardware-configuration.nix index ca6bf4b..48a4680 100644 --- a/configurations/nixos/horizon/hardware-configuration.nix +++ b/configurations/nixos/horizon/hardware-configuration.nix @@ -38,37 +38,37 @@ fsType = "vfat"; }; - "/mnt/leyla_home" = { + "/mnt/new_leyla_home" = { device = "defiant:/exports/leyla"; fsType = "nfs"; options = ["x-systemd.automount" "user" "noatime" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"]; }; - "/mnt/eve_home" = { + "/mnt/new_eve_home" = { device = "defiant:/exports/eve"; fsType = "nfs"; options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"]; }; - "/mnt/users_home" = { + "/mnt/new_users_home" = { device = "defiant:/exports/users"; fsType = "nfs"; options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"]; }; - "/mnt/legacy_leyla_home" = { + "/mnt/leyla_home" = { device = "server.arpa:/home/leyla"; fsType = "nfs"; options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"]; }; - "/mnt/legacy_share_home" = { + "/mnt/share_home" = { device = "server.arpa:/home/share"; fsType = "nfs"; options = ["x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc"]; }; - "/mnt/legacy_docker_home" = { + "/mnt/docker_home" = { device = "server.arpa:/home/docker"; fsType = "nfs"; options = ["x-systemd.automount" "noauto" "x-systemd.idle-timeout=600"];