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 );