From 0a8702e3ba2ad424aa82ae1e9f7b119a6a781f09 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 22 Dec 2025 10:30:55 +0900 Subject: [PATCH] flake-input-exporter: replace hardcoded ip space with ones from `values` --- base/flake-input-exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/flake-input-exporter.nix b/base/flake-input-exporter.nix index 948064e..dcb0016 100644 --- a/base/flake-input-exporter.nix +++ b/base/flake-input-exporter.nix @@ -45,8 +45,8 @@ in allow ${values.hosts.ildkule.ipv6}/128; allow 127.0.0.1/32; allow ::1/128; - allow 129.241.210.128/25; - allow 2001:700:300:1900::/64; + allow ${values.ipv4-space}; + allow ${values.ipv6-space}; deny all; ''; };