mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 12:09:40 +01:00
16 lines
313 B
Nix
16 lines
313 B
Nix
|
## When using from a Flake, you can access these via imports of the attr key, e.g:
|
||
|
#
|
||
|
# imports = [
|
||
|
# nixos-hardware.nixosModules.asus-zephyrus-ga402x.amdgpu
|
||
|
# ];
|
||
|
#
|
||
|
## or:
|
||
|
# imports = [
|
||
|
# nixos-hardware.nixosModules.asus-zephyrus-ga402x.nvidia
|
||
|
# ];
|
||
|
|
||
|
{
|
||
|
amdgpu = import ./amdgpu;
|
||
|
nvidia = import ./nvidia;
|
||
|
}
|