diff --git a/configuration/nginx/default.nix b/configuration/nginx/default.nix index 92ea53c..dab0259 100644 --- a/configuration/nginx/default.nix +++ b/configuration/nginx/default.nix @@ -10,15 +10,13 @@ description = "The base domain name to append to virtual domain names"; }; - config = { - services.nginx = { - enable = true; - recommendedTlsSettings = true; - recommendedOptimisation = true; - recommendedGzipSettings = true; - recommendedProxySettings = true; - clientMaxBodySize = "10G"; - statusPage = true; # For metrics, should be accessible only from localhost - }; + config.services.nginx = { + enable = true; + recommendedTlsSettings = true; + recommendedOptimisation = true; + recommendedGzipSettings = true; + recommendedProxySettings = true; + clientMaxBodySize = "10G"; + statusPage = true; # For metrics, should be accessible only from localhost }; }