nixpkgs/nixos/modules/tasks
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
..
filesystems virtualbox service: add support for vboxsf guest filesystem 2015-09-21 22:32:13 +02:00
bcache.nix nixos: move bcache udev rule in a new bcache.nix module 2014-11-10 22:19:43 +01:00
cpu-freq.nix Remove non-cpufreq_* modules since they are loaded by udev. 2014-07-14 02:35:09 +02:00
encrypted-devices.nix nixos: fix some types 2015-09-18 18:48:50 +00:00
filesystems.nix nixos/filesystems: Improve vboxsf default options. 2015-09-21 22:32:14 +02:00
kbd.nix Some more type cleanup 2015-06-15 18:18:46 +02:00
lvm.nix Don't enable LVM2 in containers 2014-04-15 23:43:39 +02:00
network-interfaces-scripted.nix Typo 2015-04-20 16:12:28 +02:00
network-interfaces-systemd.nix nixos/networkd: Add an assertion for unsupported rstp 2015-02-24 13:09:34 -08:00
network-interfaces.nix nixos: fix some types 2015-09-18 18:48:50 +00:00
scsi-link-power-management.nix
swraid.nix nixos: Add boot.initrd.extraUdevRulesCommands 2014-11-10 22:19:43 +01:00
trackpoint.nix Trackpoint scrolling on T450s et al 2015-05-25 20:00:35 +02:00
tty-backgrounds-combine.sh Another attempt to eradicate ensureDir 2014-06-30 14:56:10 +02:00