about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/erofs.nix
blob: a3d6576693505f62b599f3381f6fa95d23004317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, lib, pkgs, ... }:

let

  inInitrd = lib.any (fs: fs == "erofs") config.boot.initrd.supportedFilesystems;
  inSystem = lib.any (fs: fs == "erofs") config.boot.supportedFilesystems;

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.

  };
}