nixos-hardware/asus/zephyrus/ga402/default.nix

26 lines
478 B
Nix
Raw Normal View History

2022-12-03 11:38:26 -05:00
{ lib, ... }:
2022-12-03 11:19:05 -05:00
{
imports = [
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
services = {
2022-12-03 11:38:26 -05:00
asusd.enable = lib.mkDefault true;
# fixes mic mute button
udev.extraHwdb = ''
evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
KEYBOARD_KEY_ff31007c=f20
'';
2022-12-03 11:19:05 -05:00
};
boot = {
2023-07-16 14:49:56 -04:00
kernelParams = [ "pcie_aspm.policy=powersupersave" ];
2022-12-03 11:19:05 -05:00
};
}