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

39 lines
1,020 B
Nix
Raw Normal View History

2023-02-09 12:06:28 -05:00
{ lib, ... }:
2021-07-25 17:14:52 -04:00
{
imports = [
../../../common/cpu/amd
2023-02-08 05:56:56 -05:00
../../../common/cpu/amd/pstate.nix
2023-02-08 05:56:30 -05:00
../../../common/gpu/amd
../../../common/gpu/nvidia/prime.nix
2021-07-25 17:14:52 -04:00
../../../common/pc/laptop
../../../common/pc/laptop/ssd
2021-07-25 17:14:52 -04:00
];
hardware.nvidia = {
# PCI-Express Runtime D3 Power Management is enabled by default on this laptop
# But it can fix screen tearing & suspend/resume screen corruption in sync mode
modesetting.enable = lib.mkDefault true;
# Enable DRM kernel mode setting
powerManagement.enable = lib.mkDefault true;
2024-01-29 15:54:38 -05:00
dynamicBoost.enable = true;
prime = {
amdgpuBusId = "PCI:4:0:0";
nvidiaBusId = "PCI:1:0:0";
};
2021-07-25 17:14:52 -04:00
};
2023-02-09 12:06:28 -05:00
services = {
asusd.enable = lib.mkDefault true;
udev.extraHwdb = ''
evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
KEYBOARD_KEY_ff31007c=f20 # fixes mic mute button
KEYBOARD_KEY_ff3100b2=home # Set fn+LeftArrow as Home
KEYBOARD_KEY_ff3100b3=end # Set fn+RightArrow as End
2023-02-09 12:06:28 -05:00
'';
};
2021-07-25 17:14:52 -04:00
}