mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-21 00:49:27 +03: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 ];
|
||
|
}
|