1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

pet: fix settings format issue

Before it was not possible to place setting values outside the
`General` section.
This commit is contained in:
Mmequignon 2021-10-27 19:13:07 +02:00 committed by Robert Helgesson
parent 5559ef0023
commit d85bf67c48
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
5 changed files with 99 additions and 7 deletions

View file

@ -45,3 +45,14 @@ changes are only active if the `home.stateVersion` option is set to
"21.11" or later.
* The <<opt-home.keyboard>> option now defaults to `null`, meaning that Home Manager won't do any keyboard layout management. For example, `setxkbmap` won't be run in X sessions.
* The <<opt-programs.pet.settings>> option no longer place its value inside a `General` attribute.
For example, is you before had
+
[source,nix]
programs.pet.settings.editor = "nvim";
+
then you now need
+
[source,nix]
programs.pet.settings.General.editor = "nvim";