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:
parent
5559ef0023
commit
d85bf67c48
5 changed files with 99 additions and 7 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue