2023-02-09 17:06:28 +00:00
|
|
|
{ lib, ... }:
|
2021-07-25 21:14:52 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/amd
|
2023-02-08 10:56:56 +00:00
|
|
|
../../../common/cpu/amd/pstate.nix
|
2023-02-08 10:56:30 +00:00
|
|
|
../../../common/gpu/amd
|
2022-11-13 01:54:59 +00:00
|
|
|
../../../common/gpu/nvidia/prime.nix
|
2021-07-25 21:14:52 +00:00
|
|
|
../../../common/pc/laptop
|
2023-02-08 10:57:46 +00:00
|
|
|
../../../common/pc/laptop/ssd
|
2021-07-25 21:14:52 +00:00
|
|
|
];
|
|
|
|
|
2023-02-10 06:54:19 +00:00
|
|
|
hardware.nvidia = {
|
|
|
|
# Enable DRM kernel mode setting
|
2024-01-29 20:55:36 +00:00
|
|
|
# This will also cause "PCI-Express Runtime D3 Power Management" to be enabled by default
|
|
|
|
modesetting.enable = lib.mkDefault true;
|
2024-01-29 20:54:38 +00:00
|
|
|
|
2024-03-27 17:20:41 +00:00
|
|
|
dynamicBoost.enable = lib.mkDefault true;
|
2023-02-10 06:54:19 +00:00
|
|
|
|
|
|
|
prime = {
|
|
|
|
amdgpuBusId = "PCI:4:0:0";
|
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
};
|
2021-07-25 21:14:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-09 17:06:28 +00:00
|
|
|
services = {
|
|
|
|
asusd.enable = lib.mkDefault true;
|
|
|
|
|
|
|
|
udev.extraHwdb = ''
|
|
|
|
evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
|
2023-09-11 11:38:26 +00:00
|
|
|
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 17:06:28 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-07-25 21:14:52 +00:00
|
|
|
}
|