1
Fork 0

Fix type signature for nginx static file helper

This commit is contained in:
prescientmoon 2024-03-11 16:14:41 +01:00
parent e3da5a795f
commit c8885be2c2
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -5,7 +5,7 @@
}; };
options.satellite.static = lib.mkOption { 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"; description = "Helper function for generating a quick file serving config";
}; };