mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
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>
This commit is contained in:
parent
cd4caed35a
commit
f9766f885d
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ in
|
||||||
|
|
||||||
environment.etc.fstab.text =
|
environment.etc.fstab.text =
|
||||||
let
|
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;
|
skipCheck = fs: fs.noCheck || fs.device == "none" || builtins.elem fs.fsType fsToSkipCheck;
|
||||||
in ''
|
in ''
|
||||||
# This is a generated file. Do not edit!
|
# This is a generated file. Do not edit!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue