mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
manual: note deprecation of list values for file options
In particular, this entry notes that assigning lists to `home.file`, `xdg.configFile`, and `xdg.dataFile` is deprecated and will be removed in the next release.
This commit is contained in:
parent
ee01d24a45
commit
bff499113e
1 changed files with 26 additions and 1 deletions
|
@ -9,7 +9,32 @@ section is therefore not final.
|
||||||
|
|
||||||
This release has the following notable changes:
|
This release has the following notable changes:
|
||||||
|
|
||||||
* Nothing has happened.
|
* Assigning a list to the <<opt-home.file>>, <<opt-xdg.configFile>>,
|
||||||
|
and <<opt-xdg.dataFile>> options is now deprecated and will produce a
|
||||||
|
warning message if used. Specifically, if your configuration currently
|
||||||
|
contains something like
|
||||||
|
+
|
||||||
|
[source,nix]
|
||||||
|
----
|
||||||
|
home.file = [
|
||||||
|
{
|
||||||
|
target = ".config/foo.txt";
|
||||||
|
text = "bar";
|
||||||
|
}
|
||||||
|
]
|
||||||
|
----
|
||||||
|
+
|
||||||
|
then it should be updated to instead use the equivalent attribute set form
|
||||||
|
+
|
||||||
|
[source,nix]
|
||||||
|
----
|
||||||
|
home.file = {
|
||||||
|
".config/foo.txt".text = "bar";
|
||||||
|
}
|
||||||
|
----
|
||||||
|
+
|
||||||
|
Support for the list form will be removed in Home Manager version
|
||||||
|
20.09.
|
||||||
|
|
||||||
[[sec-release-20.03-state-version-changes]]
|
[[sec-release-20.03-state-version-changes]]
|
||||||
=== State Version Changes
|
=== State Version Changes
|
||||||
|
|
Loading…
Reference in a new issue