From 8ccf3aac9b084ed06559533c2a567f1255b84729 Mon Sep 17 00:00:00 2001 From: jimjam4real Date: Sun, 22 Sep 2024 18:08:50 -0400 Subject: [PATCH] Fix firewall and nfs --- configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 62baf75..53c8b1b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -295,8 +295,9 @@ in # NFS server services.nfs.server = { enable = true; + # Allowing to 0.0.0.0 makes any IP the firewall allows in exports = '' - /export/freecornNFS 10.0.0.0/24(rw,no_subtree_check) + /export/freecornNFS 0.0.0.0(rw,no_subtree_check) ''; };