2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2012-03-09 17:17:37 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2012-03-09 17:17:37 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
inInitrd = any (fs: fs == "vfat") config.boot.initrd.supportedFilesystems;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
config = mkIf (any (fs: fs == "vfat") config.boot.supportedFilesystems) {
|
|
|
|
|
|
|
|
system.fsPackages = [ pkgs.dosfstools ];
|
|
|
|
|
|
|
|
boot.initrd.kernelModules = mkIf inInitrd [ "vfat" "nls_cp437" "nls_iso8859-1" ];
|
|
|
|
|
2022-04-16 21:46:32 +02:00
|
|
|
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
|
2012-03-09 17:17:37 +01:00
|
|
|
''
|
2015-03-29 01:15:41 +01:00
|
|
|
copy_bin_and_libs ${pkgs.dosfstools}/sbin/dosfsck
|
2015-03-29 04:06:43 +02:00
|
|
|
ln -sv dosfsck $out/bin/fsck.vfat
|
2012-03-09 17:17:37 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|