mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
20 lines
427 B
Nix
20 lines
427 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
inInitrd = any (fs: fs == "jfs") config.boot.initrd.supportedFilesystems;
|
|
in
|
|
{
|
|
config = mkIf (any (fs: fs == "jfs") config.boot.supportedFilesystems) {
|
|
|
|
system.fsPackages = [ pkgs.jfsutils ];
|
|
|
|
boot.initrd.kernelModules = mkIf inInitrd [ "jfs" ];
|
|
|
|
boot.initrd.extraUtilsCommands = mkIf inInitrd ''
|
|
copy_bin_and_libs ${pkgs.jfsutils}/sbin/fsck.jfs
|
|
'';
|
|
};
|
|
}
|