nixos/movim: Fix accidental append to module system property

This commit is contained in:
Robert Hensing
2025-03-31 12:24:22 +02:00
parent 7ace45436b
commit e12690d530
+4 -3
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;