From 6f1d2e268a4bb84f4cae3b9e6f845549f611b4e9 Mon Sep 17 00:00:00 2001 From: gwg313 Date: Wed, 9 Jul 2025 08:03:12 -0400 Subject: [PATCH] fix: update nfs mounts Signed-off-by: gwg313 --- common/nixos/nfs.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/common/nixos/nfs.nix b/common/nixos/nfs.nix index 7ba3549..3d1012a 100644 --- a/common/nixos/nfs.nix +++ b/common/nixos/nfs.nix @@ -11,17 +11,6 @@ config = lib.mkIf config.nfs.enable { fileSystems = { - "/media" = { - device = inputs.secrets.nfs.devices.media; - fsType = "nfs"; - options = [ - "x-systemd.automount" - "noauto" - "x-systemd.after=network-online.target" - "x-systemd.mount-timeout=90" - ]; - }; - "/books" = { device = inputs.secrets.nfs.devices.books; fsType = "nfs"; @@ -44,8 +33,8 @@ ]; }; - "/projects" = { - device = inputs.secrets.nfs.devices.projects; + "/personal" = { + device = inputs.secrets.nfs.devices.personal; fsType = "nfs"; options = [ "x-systemd.automount"