mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
nixos/movim: Fix accidental append to module system property (#394861)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user