1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 02:23:33 +02:00
nixos-hardware/asus/zephyrus/ga401/default.nix

24 lines
474 B
Nix
Raw Normal View History

2021-07-25 23:14:52 +02:00
{ ... }:
{
imports = [
../../../common/cpu/amd
2023-02-08 11:56:56 +01:00
../../../common/cpu/amd/pstate.nix
2023-02-08 11:56:30 +01:00
../../../common/gpu/amd
../../../common/gpu/nvidia/prime.nix
2021-07-25 23:14:52 +02:00
../../../common/pc/laptop
../../../common/pc/laptop/ssd
2021-07-25 23:14:52 +02:00
];
hardware.nvidia.prime = {
amdgpuBusId = "PCI:4:0:0";
nvidiaBusId = "PCI:1:0:0";
};
# fixes mic mute button
services.udev.extraHwdb = ''
evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
KEYBOARD_KEY_ff31007c=f20
'';
}