Commit 7ef58bce authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

nixos/nginx: disable configuration validation for now

There still seem a lot of breakages not addressed yet:

https://github.com/NixOS/nixpkgs/pull/205561
parent 27392c3c
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 ''