Skip to content

Commit

Permalink
docs: document programs.rofi.extraConfig changes
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Jan 20, 2021
1 parent bc528bb commit de5c06e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions doc/release-notes/rl-2103.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,28 @@ programs.broot.verbs = [
];
----

* The <<opt-programs.rofi.extraConfig>> option is now an attrset rather
than a string. To migrate, move the each line into the attrset,
removing the `rofi.` prefix from the keys. For example,
+
[source,nix]
----
programs.rofi.extraConfig = ''
rofi.show-icons: true
rofi.modi: drun,emoji,ssh
'';
----
+
becomes
+
[source,nix]
----
programs.rofi.extraConfig = {
show-icons = true;
modi = "drun,emoji,ssh";
};
----

[[sec-release-21.03-state-version-changes]]
=== State Version Changes

Expand Down

0 comments on commit de5c06e

Please sign in to comment.