From c8885be2c288d8be9cd9a4ef04f20c74401f50df Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Mon, 11 Mar 2024 16:14:41 +0100 Subject: [PATCH] Fix type signature for nginx static file helper --- modules/nixos/nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/nginx.nix b/modules/nixos/nginx.nix index a85f731..624275a 100644 --- a/modules/nixos/nginx.nix +++ b/modules/nixos/nginx.nix @@ -5,7 +5,7 @@ }; options.satellite.static = 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 file serving config"; };