summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/vfat.nix
blob: 4cfe6e208f7e192722e9f5d6b4b78d8596af368b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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
      ''
        cp -v ${pkgs.dosfstools}/sbin/dosfsck $out/bin
        ln -sv dosfsck $out/bin/fsck.vfat
      '';

  };
}