nixos/nginx: disable configuration validation for now
There still seem a lot of breakages not addressed yet: https://github.com/NixOS/nixpkgs/pull/205561
This commit is contained in:
parent
27392c3cb3
commit
7ef58bce9d
1 changed files with 3 additions and 1 deletions
|
@ -524,7 +524,9 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
validateConfig = mkOption {
|
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";
|
defaultText = literalExpression "pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform";
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
|
|
Loading…
Reference in a new issue