From 06f5092a219763208d62ba4b41f461c850ecf7d0 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Sun, 28 Dec 2025 17:52:48 -0600 Subject: [PATCH] fix mount for nfs --- hosts/h002/nfs-data.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/h002/nfs-data.nix b/hosts/h002/nfs-data.nix index ceda8a40..f796c878 100644 --- a/hosts/h002/nfs-data.nix +++ b/hosts/h002/nfs-data.nix @@ -3,7 +3,7 @@ services.nfs.server = { enable = true; exports = '' - /mnt/storage 100.64.0.0/10(rw,sync,no_subtree_check,fsid=0,crossmnt) + /data 100.64.0.0/10(rw,sync,no_subtree_check,fsid=0,crossmnt) ''; };