mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
16 lines
409 B
Nix
16 lines
409 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../../common/gpu/amd
|
|
../../../common/cpu/amd
|
|
../../../common/cpu/amd/pstate.nix
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
../../../common/pc/ssd
|
|
../../../common/pc/laptop/hdd
|
|
#../../../common/hidpi.nix #hidpi
|
|
../.
|
|
];
|
|
|
|
boot.kernelParams = [ "i8042.nomux=1" "i8042.reset" ]; # Fix trackpoint and touchpad working only after reboot
|
|
}
|
|
|