From a549b577da3c2498684e1e3134b8ffd9a6b556c5 Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Mon, 8 Jul 2024 03:11:21 +0200 Subject: [PATCH] Fix missing cloudflare arg in lambda --- modules/nixos/cloudflared.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/cloudflared.nix b/modules/nixos/cloudflared.nix index 9c6f438..765c28d 100644 --- a/modules/nixos/cloudflared.nix +++ b/modules/nixos/cloudflared.nix @@ -51,7 +51,7 @@ in }; config.services.cloudflared.tunnels.${cfg.tunnel}.ingress = lib.attrsets.mapAttrs' - (_: { port, host }: { + (_: { port, host, ... }: { name = host; value = "http://localhost:${toString port}"; })