nixos/bcachefs: remove superfluous fsck from initrd

bcachefs checks the filesystem at mount time, therefore no separate fsck binary is needed in initrd.
This commit is contained in:
hyperfekt
2018-11-03 18:07:32 +01:00
parent 1851203c7b
commit 482228919c
2 changed files with 1 additions and 9 deletions
@@ -17,10 +17,5 @@ in
boot.kernelPackages = pkgs.linuxPackages_testing_bcachefs;
boot.initrd.availableKernelModules = mkIf inInitrd [ "bcachefs" ];
boot.initrd.extraUtilsCommands = mkIf inInitrd
''
copy_bin_and_libs ${pkgs.bcachefs-tools}/bin/fsck.bcachefs
'';
};
}