From 8d57794a477dc2fcc390c6f2d82b92533ddac8f1 Mon Sep 17 00:00:00 2001 From: kat Date: Sat, 8 Oct 2022 12:28:59 -0700 Subject: [PATCH] feat(services/nfs): tailscale revamp --- services/nfs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/nfs.nix b/services/nfs.nix index 4bf5c114..1bf3d8f1 100644 --- a/services/nfs.nix +++ b/services/nfs.nix @@ -8,6 +8,7 @@ with lib; }; services.nfs.server.enable = true; - services.nfs.server.exports = "/mnt/zraw/media 192.168.1.0/24(rw) fe80::/10(rw) 200::/7(rw) 2a00:23c7:c597:7400::/56(rw)"; + # chitei, tailscale v4, link-local, tailscale v6 + services.nfs.server.exports = "/mnt/zraw/media 192.168.1.0/24(rw) 100.64.0.0/10(rw) fe80::/10(rw) fd7a:115c:a1e0:ab12::/64(rw)"; }