nixos/doc: drop a repeated paragraph

It's in "backward incompatibilities" section, so no need to be also
in "*other* notable changes" section.
This commit is contained in:
Vladimír Čunát 2023-06-01 12:47:34 +02:00
parent c41c19276d
commit 054c184cab
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -546,8 +546,6 @@ In addition to numerous new and updated packages, this release has the following
- Booting from a volume managed by the Stratis storage management daemon is now supported. Use `fileSystems.<name>.stratis.poolUuid` to configure the pool containing the fs.
- Only `k3s` version 1.26 is included. Users of the `k3s_1_24` or `k3s_1_25` packages should upgrade to use the version 1.26 of the package.
## Nixpkgs internals {#sec-release-23.05-nixpkgs-internals}
- `buildDunePackage` now defaults to `strictDeps = true` which means that any library should go into `buildInputs` or `checkInputs`. Any executable that is run on the building machine should go into `nativeBuildInputs` or `nativeCheckInputs` respectively. Example of executables are `ocaml`, `findlib` and `menhir`. PPXs are libraries which are built by dune and should therefore not go into `nativeBuildInputs`.