Unverified Commit 8abfd561 authored by Guillaume Girol's avatar Guillaume Girol Committed by GitHub
Browse files

Merge pull request #207532 from Mic92/nginx-fix

nixos/nginx: disable configuration validation for now
parents 8f831626 7ef58bce
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -524,7 +524,9 @@ in
      };

      validateConfig = mkOption {
        default = pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform;
        # FIXME: re-enable if we can make of the configurations work.
        #default = pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform;
        default = false;
        defaultText = literalExpression "pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform";
        type = types.bool;
        description = lib.mdDoc ''