nixos/movim: Fix accidental append to module system property (#394861)

This commit is contained in:
Florian Klink
2025-03-31 16:38:51 +01:00
committed by GitHub

View File

@@ -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;