mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
22 lines
394 B
Nix
22 lines
394 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/amd
|
||
|
../../../common/gpu/nvidia.nix
|
||
|
../../../common/pc/laptop
|
||
|
../../../common/pc/ssd
|
||
|
];
|
||
|
|
||
|
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
|
||
|
'';
|
||
|
}
|