boot.initrd.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.

Type
(attribute set of boolean) or (list of string) convertible to it
Default
{ }
Example
{
  btrfs = true;
  zfs = lib.mkForce false;
}
Declared
<nixpkgs/nixos/modules/system/boot/stage-1.nix>