From 8091664f11f09ca00ced35c0e63c46f75e65d279 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Fri, 12 Jul 2024 11:07:51 +0200 Subject: [PATCH] Expose NFS shares on 10.0.0.0/8 --- nixos-modules/data-sharing.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-modules/data-sharing.nix b/nixos-modules/data-sharing.nix index b5e7440..ac6c456 100644 --- a/nixos-modules/data-sharing.nix +++ b/nixos-modules/data-sharing.nix @@ -14,7 +14,7 @@ let nfsExports = lib.strings.concatLines ( builtins.map (share: - "${share} 192.168.30.0/16(rw,sync,no_subtree_check,no_root_squash) 127.0.0.1/8(rw,sync,no_subtree_check,no_root_squash)" + "${share} 192.168.30.0/16(rw,sync,no_subtree_check,no_root_squash) 127.0.0.1/8(rw,sync,no_subtree_check,no_root_squash) 10.0.0.0/8(rw,sync,no_subtree_check,no_root_squash)" ) nfsShares );