summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-09-21 14:43:05 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-09-21 22:32:14 +0200
commitf9766f885d74ed5f54f38acdde590d1ac977e4c5 (patch)
tree117389c18e6e86bd7af7d6806828a33c5e3a5edc /nixos
parentcd4caed35ae8caf4473b2ac80d826f06e6a2e9e9 (diff)
downloadnixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar.gz
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar.bz2
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar.lz
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar.xz
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.tar.zst
nixlib-f9766f885d74ed5f54f38acdde590d1ac977e4c5.zip
nixos/filesystems: Skip check for vboxsf.
We don't even have any means to check a VirtualBox shared folder, so
let's not even try to.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index cf6abf52cf65..4409bd4cc8c3 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -143,7 +143,7 @@ in
 
     environment.etc.fstab.text =
       let
-        fsToSkipCheck = [ "none" "btrfs" "zfs" "tmpfs" "nfs" ];
+        fsToSkipCheck = [ "none" "btrfs" "zfs" "tmpfs" "nfs" "vboxsf" ];
         skipCheck = fs: fs.noCheck || fs.device == "none" || builtins.elem fs.fsType fsToSkipCheck;
       in ''
         # This is a generated file.  Do not edit!