1 { config, lib, pkgs, ... }:
7 inInitrd = config.boot.initrd.supportedFilesystems.vfat or false;
12 config = mkIf (config.boot.supportedFilesystems.vfat or false) {
14 system.fsPackages = [ pkgs.dosfstools pkgs.mtools ];
16 boot.initrd.kernelModules = mkIf inInitrd [ "vfat" "nls_cp437" "nls_iso8859-1" ];
18 boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
20 copy_bin_and_libs ${pkgs.dosfstools}/sbin/dosfsck
21 ln -sv dosfsck $out/bin/fsck.vfat
24 boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.dosfstools ];