grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / tasks / filesystems / f2fs.nix
blobf4f5fcab9caeff4e30759bb22b3e61f1ac7ea076
1 { config, pkgs, lib, ... }:
3 with lib;
5 let
6   inInitrd = config.boot.initrd.supportedFilesystems.f2fs or false;
7 in
9   config = mkIf (config.boot.supportedFilesystems.f2fs or false) {
11     system.fsPackages = [ pkgs.f2fs-tools ];
13     boot.initrd.availableKernelModules = mkIf inInitrd [ "f2fs" "crc32" ];
15     boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
16       copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/fsck.f2fs
17     '';
19     boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.f2fs-tools ];
20   };