mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 17:27:14 +08:00
11 lines
264 B
Nix
11 lines
264 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);
|
|
}
|