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

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

26 lines
556 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
inInitrd = any (fs: fs == "reiserfs") config.boot.initrd.supportedFilesystems;
in
{
config = mkIf (any (fs: fs == "reiserfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.reiserfsprogs ];
boot.initrd.kernelModules = mkIf inInitrd [ "reiserfs" ];
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
''
2015-03-29 00:15:41 +00:00
copy_bin_and_libs ${pkgs.reiserfsprogs}/sbin/reiserfsck
2015-03-29 02:07:45 +00:00
ln -s reiserfsck $out/bin/fsck.reiserfs
'';
};
}