From 3faad364181824abfda0719521fa7197961c0995 Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Mon, 13 Oct 2025 06:35:48 +0200 Subject: [PATCH] base/nixos-exporter: allow localhost to fetch --- base/flake-input-exporter.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/base/flake-input-exporter.nix b/base/flake-input-exporter.nix index 2a37631..948064e 100644 --- a/base/flake-input-exporter.nix +++ b/base/flake-input-exporter.nix @@ -42,7 +42,9 @@ in ]; extraConfig = '' allow ${values.hosts.ildkule.ipv4}/32; - allow ${values.hosts.ildkule.ipv6}/32; + 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; deny all;