2014-05-05 11:58:51 -07:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-03-25 13:39:10 -07:00
|
|
|
|
2014-05-05 11:58:51 -07:00
|
|
|
with lib;
|
2014-03-25 13:39:10 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
inInitrd = any (fs: fs == "f2fs") config.boot.initrd.supportedFilesystems;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
config = mkIf (any (fs: fs == "f2fs") config.boot.supportedFilesystems) {
|
|
|
|
|
|
|
|
system.fsPackages = [ pkgs.f2fs-tools ];
|
|
|
|
|
2017-02-22 16:13:11 -08:00
|
|
|
boot.initrd.availableKernelModules = mkIf inInitrd [ "f2fs" "crc32" ];
|
2014-03-25 13:39:10 -07:00
|
|
|
|
|
|
|
boot.initrd.extraUtilsCommands = mkIf inInitrd ''
|
2015-03-28 17:15:41 -07:00
|
|
|
copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/fsck.f2fs
|
2014-03-25 13:39:10 -07:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|