74209a4ca8
Closes #9358 Signed-off-by: Jaka Hudoklin <jakahudoklin@gmail.com> Fix reference to bin/mount.vboxsf. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
24 lines
473 B
Nix
24 lines
473 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
inInitrd = any (fs: fs == "vboxsf") config.boot.initrd.supportedFilesystems;
|
|
|
|
package = pkgs.runCommand "mount.vboxsf" {} ''
|
|
mkdir -p $out/bin
|
|
cp ${pkgs.linuxPackages.virtualboxGuestAdditions}/bin/mount.vboxsf $out/bin
|
|
'';
|
|
in
|
|
|
|
{
|
|
config = mkIf (any (fs: fs == "vboxsf") config.boot.supportedFilesystems) {
|
|
|
|
system.fsPackages = [ package ];
|
|
|
|
boot.initrd.kernelModules = mkIf inInitrd [ "vboxsf" ];
|
|
|
|
};
|
|
}
|