mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +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 ];
|
|
}
|