Unverified Commit e9b75933 authored by Florian Klink's avatar Florian Klink Committed by GitHub
Browse files

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

parents 7b82c6f2 e12690d5
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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;