From be48fb5eb15462bc32d150f1c8abfc99aabb0f7c Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 27 Dec 2024 13:40:41 -0800 Subject: [PATCH] nginx: fix option definition --- modules/nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nginx.nix b/modules/nginx.nix index 8da5190..143e14f 100644 --- a/modules/nginx.nix +++ b/modules/nginx.nix @@ -9,7 +9,7 @@ in enableACME = lib.mkEnableOption "acme cert generation and use"; - certDomains = lib.mkOptions { + certDomains = lib.mkOption { description = "additional domains to register with the ACME cert"; default = [ ]; type = with lib.types; listOf str;