aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/doc/release-notes/rl-2103.adoc
blob: 7d5b55d49a2bc093282af97932d077779e48e4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[[sec-release-21.03]]
== Release 21.03

This is the current unstable branch and the information in this
section is therefore not final.

[[sec-release-21.03-highlights]]
=== Highlights

This release has the following notable changes:

* The <<opt-programs.broot.verbs>> option is now a list rather than an
attribute set. To migrate, move the keys of the attrset into the list
items' `invocation` keys. For example,
+
[source,nix]
----
programs.broot.verbs = {
  "p" = { execution = ":parent"; };
};
----
+
becomes
+
[source,nix]
----
programs.broot.verbs = [
  {
    invocation = "p";
    execution = ":parent";
  }
];
----

[[sec-release-21.03-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
"21.03" or later.

* Nothing has happened.