From e123a9210f54afec4a154b307101420f77db9f21 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sat, 26 Jul 2025 16:11:27 +0200 Subject: [PATCH] hard-code forgejo IP to prevent `clone` step issues in CI using woodpecker's `local` back-end --- infra/common/nixos/networking.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infra/common/nixos/networking.nix b/infra/common/nixos/networking.nix index 0a703e9c..0872dad0 100644 --- a/infra/common/nixos/networking.nix +++ b/infra/common/nixos/networking.nix @@ -17,6 +17,9 @@ in { hostName = config.fediversityVm.name; domain = config.fediversityVm.domain; + hosts = { + "185.206.232.34" = [ "git.fediversity.eu" ]; + }; ## REVIEW: Do we actually need that, considering that we have static IPs? useDHCP = mkDefault true;