diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-05-26T16·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-05-26T16·32+0000 |
commit | c6cb792d48a8b4290df15202ec30b06a3383dc6a (patch) | |
tree | 17dfdb13ca20d7192187cf3b9607899a435c35ec /doc | |
parent | a64bbe049e19618c33a878154f2e69029d45ecd7 (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/release-notes.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index 6ead46e6e71d..14ab378e2059 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -17,6 +17,33 @@ features:</para> <itemizedlist> <listitem> + <para>Syntactic sugar for writing nested attribute sets. Instead of + +<programlisting> +{ + foo = { + bar = 123; + xyzzy = true; + }; + a = { b = { c = "d"; }; }; +} +</programlisting> + + you can write + +<programlisting> +{ + foo.bar = 123; + foo.xyzzy = true; + a.b.c = "d"; +} +</programlisting> + + This is useful, for instance, in NixOS configuration files.</para> + + </listitem> + + <listitem> <para>Support for Nix channels generated by Hydra, the Nix-based continuous build system. (Hydra generates NAR archives on the fly, so the size and hash of these archives isn’t known in |