From 39a03b679ab3ab02c99824d9ec4c6723aaa1a137 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 26 Sep 2015 11:02:05 +0200 Subject: [PATCH] release-notes/15.09: Document changes for vboxsf. Since 74209a4 we have initial support for the "vboxsf" (VirtualBox shared folder) file system support. This will be cherry-picked to release-15.09 so we need to notice people about the change. Signed-off-by: aszlig --- nixos/doc/manual/release-notes/rl-1509.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1509.xml b/nixos/doc/manual/release-notes/rl-1509.xml index 336d94c0e574..b814426dbe8a 100644 --- a/nixos/doc/manual/release-notes/rl-1509.xml +++ b/nixos/doc/manual/release-notes/rl-1509.xml @@ -117,6 +117,20 @@ which contains the latest Elm platform. instead of . + + + Also, there now is support for the vboxsf file + system using the configuration + attribute. An example of how this can be used in a configuration: + + +fileSystems."/shiny" = { + device = "myshinysharedfolder"; + fsType = "vboxsf"; +}; + + +