Merge pull request #207532 from Mic92/nginx-fix

nixos/nginx: disable configuration validation for now
This commit is contained in:
Guillaume Girol
2022-12-24 15:30:21 +00:00
committed by GitHub
@@ -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 ''