c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
21 lines
479 B
Nix
21 lines
479 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.erofs or false;
|
|
inSystem = config.boot.supportedFilesystems.erofs or false;
|
|
|
|
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.
|
|
|
|
};
|
|
}
|