nixpkgs/nixos/modules
aszlig cd4caed35a
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>
2015-09-21 22:32:14 +02:00
..
config nixos: fix some types 2015-09-18 18:48:50 +00: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 kibana service: init 2015-09-19 00:33:44 +02:00
profiles nixos: add xfs support to profiles/minimal 2015-09-18 18:58:18 +00:00
programs nixos: fix some types 2015-09-18 18:48:50 +00:00
security nixos: fix some types 2015-09-18 18:48:50 +00:00
services Revert "Don't evaluate haskellPackages when gitit is disabled" 2015-09-20 21:40:17 +02:00
system Merge pull request #9925 from oxij/nixos-cleanups-and-fixes 2015-09-19 00:28:49 +02:00
tasks nixos/filesystems: Improve vboxsf default options. 2015-09-21 22:32:14 +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-21 22:32:13 +02:00
module-list.nix virtualbox service: add support for vboxsf guest filesystem 2015-09-21 22:32:13 +02:00
rename.nix nixos: give users of 'services.openvpn.enable' a nice warning message 2015-09-10 11:38:43 +02:00