1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-17 20:18:31 +02:00
home-manager/docs/release-notes/rl-2205.adoc

32 lines
971 B
Plaintext
Raw Normal View History

[[sec-release-22.05]]
== Release 22.05
This is the current unstable branch and the information in this section is therefore not final.
[[sec-release-22.05-highlights]]
=== Highlights
This release has the following notable changes:
2021-12-02 05:22:41 +01:00
* The `programs.waybar.settings.modules` option was removed.
Waybar modules should now be declared directly under `programs.waybar.settings`.
[[sec-release-22.05-state-version-changes]]
=== State Version Changes
The state version in this release includes the changes below.
These changes are only active if the `home.stateVersion` option is set to "22.05" or later.
2021-12-02 05:22:41 +01:00
* The <<opt-programs.waybar.settings>> option now allows defining modules directly under <<opt-programs.waybar.settings>>.
Defining modules under `programs.waybar.settings.modules` will now be an error.
For example,
+
[source,nix]
programs.waybar.settings.modules."custom/my-module" = { };
+
becomes
+
[source,nix]
programs.waybar.settings."custom/my-module" = { };