2020-04-24 23:36:52 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2024-02-29 20:09:43 +00:00
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.f2fs or false;
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
{
|
2024-02-29 20:09:43 +00:00
|
|
|
config = mkIf (config.boot.supportedFilesystems.f2fs or false) {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
system.fsPackages = [ pkgs.f2fs-tools ];
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = mkIf inInitrd [ "f2fs" "crc32" ];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
|
2020-04-24 23:36:52 +00:00
|
|
|
copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/fsck.f2fs
|
|
|
|
'';
|
2023-11-16 04:20:00 +00:00
|
|
|
|
|
|
|
boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.f2fs-tools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|