30 lines
677 B
Nix
30 lines
677 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.extraModprobeConfig = ''
|
|
options mt7921_common disable_clc=1
|
|
options atkbd reset=1 softrepeat=1
|
|
options i8042 nomux=1 reset=1 nopnp=1 kbdreset=1 direct=1 dumbkbd=1
|
|
'';
|
|
|
|
boot.kernelParams = [
|
|
# CRITICAL FIX: Disable ACPI for i8042 (ASUS BIOS bug workaround)
|
|
"i8042.noacpi"
|
|
"i8042.reset=1"
|
|
"i8042.nomux=1"
|
|
"i8042.nopnp=1"
|
|
"atkbd.softrepeat=1"
|
|
# AMD P-State driver for better power management
|
|
"amd_pstate=active"
|
|
"amd_pstate.shared_mem=1"
|
|
# GPU
|
|
"amdgpu.gpu_recovery=1"
|
|
"amdgpu.runpm=0"
|
|
"quiet"
|
|
"udev.log_level=3"
|
|
"systemd.show_status=auto"
|
|
];
|
|
|
|
boot.kernelModules = [ "usbmon" ];
|
|
}
|