mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 20:19:40 +01:00
b5c4fb6b89
- Disable power-saving for the keyboard on the Asus Zephyrus GA402X series (2023) - Add more-aggressive roaming rules for Asus Mediatek cards when using IWD - Add note about potentially needing more-aggressive roaming rules for Asus Mediatek cards when using WPA-Supplicant - Make enabling the higher scanning optional - Split-up the AMD-GPU and Nvidia configs - Add switch for AMD-GPU recovery mode - Add switch for AMD-GPU sg_display (Scatter/Gather) mode - Add switch for AMD-GPU PSR support
15 lines
313 B
Nix
15 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;
|
|
}
|