summary refs log tree commit diff
path: root/nixos/doc/manual/release-notes
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-09-08 08:05:42 +0100
committerSergei Trofimovich <slyich@gmail.com>2023-09-10 14:26:53 +0100
commit566e32dd4290d951267e2a4d44a45c4c99f04efb (patch)
tree66775307040856c56ab2ab30df9f77548dab2cd4 /nixos/doc/manual/release-notes
parentf43d1572eca58e4614ea22e7f0cbaf1bdd7b5a2f (diff)
downloadnixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar.gz
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar.bz2
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar.lz
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar.xz
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.tar.zst
nixpkgs-566e32dd4290d951267e2a4d44a45c4c99f04efb.zip
nixos/bcache: add a `boot.bcache.enable` kill switch
My system does not use `bcache` and I sould prever my `systemPackages`
not to have bcache tools.

The change does not change the default but proviced usual `enable` knob.
Diffstat (limited to 'nixos/doc/manual/release-notes')
-rw-r--r--nixos/doc/manual/release-notes/rl-2311.section.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md
index 921fe3c5cb7..5b571ca00fa 100644
--- a/nixos/doc/manual/release-notes/rl-2311.section.md
+++ b/nixos/doc/manual/release-notes/rl-2311.section.md
@@ -263,6 +263,8 @@ The module update takes care of the new config syntax and the data itself (user
 
 - Certificate generation via the `security.acme` now limits the concurrent number of running certificate renewals and generation jobs, to avoid spiking resource usage when processing many certificates at once. The limit defaults to *5* and can be adjusted via `maxConcurrentRenewals`. Setting it to *0* disables the limits altogether.
 
+- New `boot.bcache.enable` (default enabled) allows completely removing `bcache` mount support.
+
 ## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals}
 
 - The use of `sourceRoot = "source";`, `sourceRoot = "source/subdir";`, and similar lines in package derivations using the default `unpackPhase` is deprecated as it requires `unpackPhase` to always produce a directory named "source". Use `sourceRoot = src.name`, `sourceRoot = "${src.name}/subdir";`, or `setSourceRoot = "sourceRoot=$(echo */subdir)";` or similar instead.