2014-05-05 20:58:51 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2014-03-25 21:39:10 +01:00
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
with lib;
|
2014-03-25 21:39:10 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
inInitrd = any (fs: fs == "f2fs") config.boot.initrd.supportedFilesystems;
|
2018-06-19 13:31:06 +02:00
|
|
|
fileSystems = filter (x: x.fsType == "f2fs") config.system.build.fileSystems;
|
2014-03-25 21:39:10 +01:00
|
|
|
in
|
|
|
|
{
|
|
|
|
config = mkIf (any (fs: fs == "f2fs") config.boot.supportedFilesystems) {
|
|
|
|
|
|
|
|
system.fsPackages = [ pkgs.f2fs-tools ];
|
|
|
|
|
2017-02-23 01:13:11 +01:00
|
|
|
boot.initrd.availableKernelModules = mkIf inInitrd [ "f2fs" "crc32" ];
|
2014-03-25 21:39:10 +01:00
|
|
|
|
|
|
|
boot.initrd.extraUtilsCommands = mkIf inInitrd ''
|
2015-03-29 01:15:41 +01:00
|
|
|
copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/fsck.f2fs
|
2018-06-19 13:31:06 +02:00
|
|
|
${optionalString (any (fs: fs.autoResize) fileSystems) ''
|
2018-06-19 13:27:36 +02:00
|
|
|
# We need f2fs-tools' tools to resize filesystems
|
|
|
|
copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/resize.f2fs
|
|
|
|
''}
|
|
|
|
|
2014-03-25 21:39:10 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|