nixos-hardware/asus/zephyrus/ga402/default.nix
2022-12-03 17:19:05 +01:00

21 lines
392 B
Nix

{ ... }:
{
imports = [
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
../../../common/pc/laptop
../../../common/pc/laptop/acpi_call.nix
../../../common/pc/laptop/ssd
];
services = {
asusd.enable = true;
};
boot = {
kernelParams = [ "pcie_aspm.policy=powersupersave" "acpi.prefer_microsoft_dsm_guid=1" ];
};
}