diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml index 8494b62e6ff05..ad08caf3ce5c8 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml @@ -503,14 +503,6 @@ maintainer to update the package. - - - The (previously undocumented) Nixpkgs configuration option - checkMeta now defaults to - true. This may cause evaluation failures - for packages with incorrect meta attribute. - - xow package removed along with the diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md index a5ba4841f549b..85c35b993ac4c 100644 --- a/nixos/doc/manual/release-notes/rl-2211.section.md +++ b/nixos/doc/manual/release-notes/rl-2211.section.md @@ -172,9 +172,6 @@ Available as [services.patroni](options.html#opt-services.patroni.enable). - riak package removed along with `services.riak` module, due to lack of maintainer to update the package. -- The (previously undocumented) Nixpkgs configuration option `checkMeta` now defaults to `true`. This may cause evaluation - failures for packages with incorrect `meta` attribute. - - xow package removed along with the `hardware.xow` module, due to the project being deprecated in favor of `xone`, which is available via the `hardware.xone` module. - dd-agent package removed along with the `services.dd-agent` module, due to the project being deprecated in favor of `datadog-agent`, which is available via the `services.datadog-agent` module. diff --git a/pkgs/top-level/config.nix b/pkgs/top-level/config.nix index 6ddd647a2b1a1..5057ca10e105a 100644 --- a/pkgs/top-level/config.nix +++ b/pkgs/top-level/config.nix @@ -130,7 +130,7 @@ let checkMeta = mkOption { type = types.bool; - default = true; + default = false; description = '' Whether to check that the `meta` attribute of derivations are correct during evaluation time. '';