commit ab00afd1521ef2c8d488fea5922e85d8eedf3aaa parent 769200c9d156bd180ecdffd38c355dc3018a2db6 Author: MTRNord <mtrnord1@gmail.com> Date: Sun, 28 Jan 2024 02:42:20 +0100 Debug Diffstat:
| M | nixos/worker-1/configuration.nix | | | 5 | ++++- |
| M | nixos/worker-2/configuration.nix | | | 5 | ++++- |
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -474,7 +474,10 @@ in { if net ~ 0.0.0.0/0 then reject; accept; }; - import all; + import filter { + if net ~ 0.0.0.0/0 then reject; + accept; + }; }; learn yes; } diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix @@ -686,7 +686,10 @@ in { if net ~ 0.0.0.0/0 then reject; accept; }; - import all; + import filter { + if net ~ 0.0.0.0/0 then reject; + accept; + }; }; learn yes; }