2023-05-24 13:37:59 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.erofs or false;
|
|
|
|
inSystem = config.boot.supportedFilesystems.erofs or false;
|
2023-05-24 13:37:59 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
config = lib.mkIf (inInitrd || inSystem) {
|
|
|
|
|
|
|
|
system.fsPackages = [ pkgs.erofs-utils ];
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "erofs" ];
|
|
|
|
|
|
|
|
# fsck.erofs is currently experimental and should not be run as a
|
|
|
|
# privileged user. Thus, it is not included in the initrd.
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|