22 lines
488 B
Nix
22 lines
488 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
|
|
system.fsPackages = [ pkgs.e2fsprogs ];
|
|
|
|
boot.initrd.availableKernelModules = [ "ext2" "ext3" "ext4" ];
|
|
|
|
boot.initrd.extraUtilsCommands =
|
|
''
|
|
# Copy e2fsck and friends.
|
|
copy_bin_and_libs ${pkgs.e2fsprogs}/sbin/e2fsck
|
|
copy_bin_and_libs ${pkgs.e2fsprogs}/sbin/tune2fs
|
|
ln -sv e2fsck $out/bin/fsck.ext2
|
|
ln -sv e2fsck $out/bin/fsck.ext3
|
|
ln -sv e2fsck $out/bin/fsck.ext4
|
|
'';
|
|
|
|
};
|
|
}
|