From 22eecd6e66904e89a45ae6b8f1ecdd19829ba75e Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 23 Jan 2025 12:15:39 -0600 Subject: [PATCH 1/2] remove 2011 nas export this was used for bepasty --- sys/platforms/vps/hardware-configuration.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sys/platforms/vps/hardware-configuration.nix b/sys/platforms/vps/hardware-configuration.nix index 431b227..c009ff4 100644 --- a/sys/platforms/vps/hardware-configuration.nix +++ b/sys/platforms/vps/hardware-configuration.nix @@ -13,11 +13,5 @@ in { fsType = "nfs"; options = ["nofail" "noatime"]; }; - - "/mnt/export2011" = { - device = "172.16.129.151:/nas/5876/bepasty"; - fsType = "nfs"; - options = ["nofail" "noatime" "noexec"]; - }; }; } From 7748c67e4563164e413491fc2f3c0e1eed10b96f Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 23 Jan 2025 12:25:43 -0600 Subject: [PATCH 2/2] vps: add nas exports for immich and syncthing --- sys/platforms/vps/hardware-configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sys/platforms/vps/hardware-configuration.nix b/sys/platforms/vps/hardware-configuration.nix index c009ff4..41cc7ee 100644 --- a/sys/platforms/vps/hardware-configuration.nix +++ b/sys/platforms/vps/hardware-configuration.nix @@ -13,5 +13,17 @@ in { fsType = "nfs"; options = ["nofail" "noatime"]; }; + + "/mnt/export2178" = { + device = "172.16.129.151:/nas/5876/immich"; + fsType = "nfs"; + options = ["nofail" "noatime"]; + }; + + "/mnt/export2179" = { + device = "172.16.131.31:/nas/5876/syncthing"; + fsType = "nfs"; + options = ["nofail"]; + }; }; }