From cb6651e878b3f2d97ac5e2318d679957904105ef Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 25 Sep 2012 16:04:50 -0400 Subject: [PATCH] Update release notes --- doc/manual/release-notes.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index 7c78122f02..b8220dd96a 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -6,6 +6,35 @@ + + +
Release 1.2 (TBA) + +This release has the following improvements: + + + + + Nix no longer sets the immutable bit on files in the Nix + store. Instead, the recommended way to guard the Nix store + against accidental modification is to make it a read-only bind + mount, like this: + + +$ mount --bind /nix/store /nix/store +$ mount -o remount,ro,bind /nix/store + + + Nix will automatically make /nix/store + writable as needed (using a private mount namespace) to allow + modifications. + + + + +
+ +
Release 1.1 (July 18, 2012)