22 lines
519 B
Nix
22 lines
519 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
inInitrd = config.boot.initrd.supportedFilesystems.jfs or false;
|
||
|
in
|
||
|
{
|
||
|
config = mkIf (config.boot.supportedFilesystems.jfs or false) {
|
||
|
|
||
|
system.fsPackages = [ pkgs.jfsutils ];
|
||
|
|
||
|
boot.initrd.kernelModules = mkIf inInitrd [ "jfs" ];
|
||
|
|
||
|
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
|
||
|
copy_bin_and_libs ${pkgs.jfsutils}/sbin/fsck.jfs
|
||
|
'';
|
||
|
|
||
|
boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.jfsutils ];
|
||
|
};
|
||
|
}
|