nixpkgs/nixos/modules
aszlig b714bd7a1b
nixos/filesystems: Improve vboxsf default options.
The default options for all file systems currently are
"defaults.relatime", which works well on file systems which support the
relatime option.

Unfortunately, this is not the case for the VirtualBox shared folder
filesystem, so until now, you need to set something like:

fileSystems."/foo" = {
  device = "foo";
  fsType = "vboxsf";
  options = "defaults";
};

Otherwise mounting the file system would fail.

Now, we provide only the "defaults" option to the "vboxsf" file system,
so something like this is enough:

fileSystems."/foo" = {
  device = "foo";
  fsType = "vboxsf";
};

An alternative to that could be to document that you need to set default
options, but we really should do what users expect instead of forcing
them to look up the documentation as to why this has failed.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
(cherry picked from commit cd4caed35a)
2015-09-26 11:08:33 +02:00
..
config gdb: Look for debug info in /run/current-system/sw/lib/debug 2015-09-22 11:15:10 +02:00
hardware Put all firmware in $out/lib/firmware 2015-08-25 00:40:34 +02:00
installer nixos-generate-config: Don't enable vbox guest via deprecated option 2015-08-16 00:32:37 +02:00
misc set the channel and commit count in the release 2015-08-27 00:25:31 +02:00
profiles nixos/ISO profile: fix defaultLocales :-) 2015-08-06 12:30:38 +02:00
programs command-not-found: Fix nix-env invocation 2015-09-04 15:02:41 +02:00
security ecryptfs: 2015-08-19 12:16:57 +01:00
services nixos: show the manual in system's /share/doc (close #9928) 2015-09-24 12:32:51 +02:00
system kmod-debian-aliases: init at 21-1 (close #9669) 2015-09-13 18:21:45 +02:00
tasks nixos/filesystems: Improve vboxsf default options. 2015-09-26 11:08:33 +02:00
testing test-instrumentation.nix: Prevent calling a pager 2015-01-15 14:39:29 +01:00
virtualisation virtualbox service: add support for vboxsf guest filesystem 2015-09-26 11:08:32 +02:00
module-list.nix virtualbox service: add support for vboxsf guest filesystem 2015-09-26 11:08:32 +02:00
rename.nix Rename users.extraUsers -> users.users, users.extraGroup -> users.groups 2015-09-04 15:02:47 +02:00