mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
32 lines
751 B
Nix
32 lines
751 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/gpu/amd
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
services = {
|
|
asusd.enable = lib.mkDefault true;
|
|
|
|
# fixes mic mute button
|
|
udev.extraHwdb = ''
|
|
evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
|
|
KEYBOARD_KEY_ff31007c=f20
|
|
'';
|
|
};
|
|
|
|
boot = {
|
|
kernelParams = [ "pcie_aspm.policy=powersupersave" ];
|
|
};
|
|
|
|
assertions = [
|
|
{
|
|
assertion = (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.2");
|
|
message = "The ga402 requires kernel version >=6.2 to ensure that fans are correctly managed. Please upgrade nixpkgs for this system.";
|
|
}
|
|
];
|
|
}
|