nixpkgs/nixos/modules/tasks/filesystems/xfs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
862 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
with lib;
let
inInitrd = config.boot.initrd.supportedFilesystems.xfs or false;
in
{
config = mkIf (config.boot.supportedFilesystems.xfs or false) {
2015-04-20 22:06:17 +02:00
system.fsPackages = [ pkgs.xfsprogs.bin ];
2013-10-13 17:18:42 +02:00
boot.initrd.availableKernelModules = mkIf inInitrd [
"xfs"
"crc32c"
];
2022-04-26 21:43:01 +02:00
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
2015-04-20 22:06:17 +02:00
copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/fsck.xfs
copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/xfs_repair
'';
# Trick just to set 'sh' after the extraUtils nuke-refs.
2022-04-26 21:43:01 +02:00
boot.initrd.extraUtilsCommandsTest = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
sed -i -e 's,^#!.*,#!'$out/bin/sh, $out/bin/fsck.xfs
'';
boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.xfsprogs.bin ];
};
}