From c6cb792d48a8b4290df15202ec30b06a3383dc6a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 May 2009 16:32:02 +0000 Subject: --- doc/manual/release-notes.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'doc/manual') 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 @@ -16,6 +16,33 @@ features: + + Syntactic sugar for writing nested attribute sets. Instead of + + +{ + foo = { + bar = 123; + xyzzy = true; + }; + a = { b = { c = "d"; }; }; +} + + + you can write + + +{ + foo.bar = 123; + foo.xyzzy = true; + a.b.c = "d"; +} + + + This is useful, for instance, in NixOS configuration files. + + + Support for Nix channels generated by Hydra, the Nix-based continuous build system. (Hydra generates NAR archives on the -- cgit 1.4.1