mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
22ef358f5f
581: lenovo 16ach6h: add amd cpu pstate r=Mic92 a=LostAttractor Co-authored-by: ChaosAttractor <46527539+LostAttractor@users.noreply.github.com>
27 lines
No EOL
552 B
Nix
27 lines
No EOL
552 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../../common/cpu/amd
|
|
../../../../common/cpu/amd/pstate.nix
|
|
../../../../common/gpu/amd
|
|
../../../../common/gpu/nvidia/prime.nix
|
|
../../../../common/pc/laptop
|
|
../../../../common/pc/laptop/ssd
|
|
../edid
|
|
];
|
|
|
|
hardware = {
|
|
amdgpu.loadInInitrd = lib.mkDefault false;
|
|
|
|
nvidia = {
|
|
modesetting.enable = lib.mkDefault true;
|
|
powerManagement.enable = lib.mkDefault true;
|
|
|
|
prime = {
|
|
amdgpuBusId = "PCI:6:0:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
};
|
|
};
|
|
} |