grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / tasks / filesystems / erofs.nix
blobb13fa25315579290db9d5c26d257db6a1dd5c131
1 { config, lib, pkgs, ... }:
3 let
5   inInitrd = config.boot.initrd.supportedFilesystems.erofs or false;
6   inSystem = config.boot.supportedFilesystems.erofs or false;
8 in
11   config = lib.mkIf (inInitrd || inSystem) {
13     system.fsPackages = [ pkgs.erofs-utils ];
15     boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "erofs" ];
17     # fsck.erofs is currently experimental and should not be run as a
18     # privileged user. Thus, it is not included in the initrd.
20   };