mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
8 lines
243 B
Nix
8 lines
243 B
Nix
{ lib, config, ... }:
|
|
let
|
|
inherit (config.boot) kernelPackages;
|
|
inherit (config.services.xserver) videoDrivers;
|
|
in {
|
|
boot.extraModulePackages = lib.mkIf (lib.elem "virtualbox" videoDrivers) [ kernelPackages.virtualboxGuestAdditions ];
|
|
}
|