diff --git a/nixos/modules/services/web-apps/movim.nix b/nixos/modules/services/web-apps/movim.nix index 5eb7231a15239..c651c476d1684 100644 --- a/nixos/modules/services/web-apps/movim.nix +++ b/nixos/modules/services/web-apps/movim.nix @@ -578,8 +578,8 @@ in }; }; - nginx = - mkIf (cfg.nginx != null) { + nginx = mkIf (cfg.nginx != null) ( + { enable = true; recommendedOptimisation = mkDefault true; recommendedProxySettings = true; @@ -677,7 +677,8 @@ in } // lib.optionalAttrs (cfg.precompressStaticFiles.brotli.enable) { recommendedBrotliSettings = mkDefault true; - }; + } + ); mysql = mkIf (cfg.database.createLocally && cfg.database.type == "mysql") { enable = mkDefault true;