nixpkgs/nixos/modules/tasks/filesystems/vfat.nix

26 lines
517 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
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" ];
boot.initrd.extraUtilsCommands = mkIf inInitrd
''
2015-03-28 20:15:41 -04:00
copy_bin_and_libs ${pkgs.dosfstools}/sbin/dosfsck
2015-03-28 22:06:43 -04:00
ln -sv dosfsck $out/bin/fsck.vfat
'';
};
}