summary refs log tree commit diff
path: root/nixos/doc/manual/release-notes
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2023-09-04 23:05:00 +0000
committernicoo <nicoo@mur.at>2023-09-18 17:35:06 +0000
commit0365b05f13a4230d75bb63708694ee4692638236 (patch)
tree7bb11c076f3b9f96c69e6a7e4613c81b372f77ce /nixos/doc/manual/release-notes
parent8742134c80539b3f8e9c7c51b13a225a92e97b9a (diff)
downloadnixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar.gz
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar.bz2
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar.lz
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar.xz
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.tar.zst
nixpkgs-0365b05f13a4230d75bb63708694ee4692638236.zip
nixos/terminfo: Add config option not to add extra sudo config
This will be necessary for compatibility with `sudo-rs`.
Diffstat (limited to 'nixos/doc/manual/release-notes')
-rw-r--r--nixos/doc/manual/release-notes/rl-2311.section.md6
1 files changed, 6 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 9b30a20da16..2fd577864c0 100644
--- a/nixos/doc/manual/release-notes/rl-2311.section.md
+++ b/nixos/doc/manual/release-notes/rl-2311.section.md
@@ -280,6 +280,12 @@ The module update takes care of the new config syntax and the data itself (user
 
 - New `boot.bcache.enable` (default enabled) allows completely removing `bcache` mount support.
 
+- `security.sudo` now provides an extra option, that does not change the
+  module's default behaviour:
+  `keepTerminfo` controls whether `TERMINFO` and `TERMINFO_DIRS` are preserved
+  for `root` and the `wheel` group.
+
+
 ## 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.