mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-15 07:29:41 +01:00
10 lines
262 B
Nix
10 lines
262 B
Nix
{lib, config, ...}:
|
|
let
|
|
nvidiaPackage = config.hardware.nvidia.package;
|
|
in
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
# enable the open source drivers if the package supports it
|
|
hardware.nvidia.open = lib.mkOverride 990 (nvidiaPackage ? open && nvidiaPackage ? firmware);
|
|
}
|