MyNixOS website logo
option

boot.supportedFilesystems

Names of supported filesystem types, or an attribute set of file system types and their state. The set form may be used together with lib.mkForce to explicitly disable support for specific filesystems, e.g. to disable ZFS with an unsupported kernel.

Declarations
Type
(attribute set of boolean) or (list of string) convertible to it
Default
{ }
Example
{
  btrfs = true;
  zfs = lib.mkForce false;
}