1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 21:37:23 +02:00
nixos-hardware/asus/zephyrus/ga402/default.nix
2022-12-03 17:19:05 +01:00

20 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" ];
};
}