From 5079683b64e2df8e0da363a21fbcdc15647a807c Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Fri, 10 May 2024 19:44:38 +0200 Subject: [PATCH] Fix error with custom cloudflare helper type --- 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 4353815..3febe45 100644 --- a/modules/nixos/cloudflared.nix +++ b/modules/nixos/cloudflared.nix @@ -9,7 +9,7 @@ in }; proxy = lib.mkOption { - type = lib.types.functionTo (lib.types.functionTo lib.types.anything); + type = lib.types.functionTo lib.types.anything; description = "Helper function for generating a quick proxy config"; }; };