about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-10-20 18:00:54 +0000
committerGitHub <noreply@github.com>2023-10-20 18:00:54 +0000
commitcfc75eec4603c06503ae750f88cf397e00796ea8 (patch)
treeeb27bba81b198a219086434f75cff41bc2b3dea6 /nixos/doc
parent9320d9e7bcb350ad84b59f6f0f88abc7b8379970 (diff)
parent2b7eb7a82149babe2d408c7925adec2c13ac6345 (diff)
downloadnixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar.gz
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar.bz2
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar.lz
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar.xz
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.tar.zst
nixlib-cfc75eec4603c06503ae750f88cf397e00796ea8.zip
Merge master into staging-next
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/development/what-happens-during-a-system-switch.chapter.md4
-rw-r--r--nixos/doc/manual/release-notes/rl-2311.section.md2
2 files changed, 6 insertions, 0 deletions
diff --git a/nixos/doc/manual/development/what-happens-during-a-system-switch.chapter.md b/nixos/doc/manual/development/what-happens-during-a-system-switch.chapter.md
index 5d6d67f1aa92..82522b33740e 100644
--- a/nixos/doc/manual/development/what-happens-during-a-system-switch.chapter.md
+++ b/nixos/doc/manual/development/what-happens-during-a-system-switch.chapter.md
@@ -44,6 +44,10 @@ of actions is always the same:
 - Inspect what changed during these actions and print units that failed and
   that were newly started
 
+By default, some units are filtered from the outputs to make it less spammy.
+This can be disabled for development or testing by setting the environment variable
+`STC_DISPLAY_ALL_UNITS=1`
+
 Most of these actions are either self-explaining but some of them have to do
 with our units or the activation script. For this reason, these topics are
 explained in the next sections.
diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md
index 38e249c9bb5e..4c8b9898629b 100644
--- a/nixos/doc/manual/release-notes/rl-2311.section.md
+++ b/nixos/doc/manual/release-notes/rl-2311.section.md
@@ -359,6 +359,8 @@
 
 - The application firewall `opensnitch` now uses the process monitor method eBPF as default as recommended by upstream. The method can be changed with the setting [services.opensnitch.settings.ProcMonitorMethod](#opt-services.opensnitch.settings.ProcMonitorMethod).
 
+- `services.hedgedoc` has been heavily refactored, reducing the amount of declared options in the module. Most of the options should still work without any changes. Some options have been deprecated, as they no longer have any effect. See [#244941](https://github.com/NixOS/nixpkgs/pull/244941) for more details.
+
 - The module [services.ankisyncd](#opt-services.ankisyncd.package) has been switched to [anki-sync-server-rs](https://github.com/ankicommunity/anki-sync-server-rs) from the old python version, which was difficult to update, had not been updated in a while, and did not support recent versions of anki.
 Unfortunately all servers supporting new clients (newer version of anki-sync-server, anki's built in sync server and this new rust package) do not support the older sync protocol that was used in the old server, so such old clients will also need updating and in particular the anki package in nixpkgs is also being updated in this release.
 The module update takes care of the new config syntax and the data itself (user login and cards) are compatible, so users of the module will be able to just log in again after updating both client and server without any extra action.