2020-04-24 23:36:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.vfat or false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2024-02-29 20:09:43 +00:00
|
|
|
config = mkIf (config.boot.supportedFilesystems.vfat or false) {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
system.fsPackages = [ pkgs.dosfstools pkgs.mtools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
boot.initrd.kernelModules = mkIf inInitrd [ "vfat" "nls_cp437" "nls_iso8859-1" ];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
|
2020-04-24 23:36:52 +00:00
|
|
|
''
|
|
|
|
copy_bin_and_libs ${pkgs.dosfstools}/sbin/dosfsck
|
|
|
|
ln -sv dosfsck $out/bin/fsck.vfat
|
|
|
|
'';
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.dosfstools ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|