1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 13:27:22 +02:00
nixos-hardware/common/gpu/nvidia/ampere/default.nix

11 lines
258 B
Nix
Raw Normal View History

{lib, config, ...}:
let
nividiaPackage = config.hardware.nvidia.package;
in
{
imports = [ ../. ];
# enable the opensorce drivers if the package supports it
hardware.nvidia.open = lib.mkDefault (nividiaPackage ? open && nividiaPackage ? firmware);
}