nixos-hardware/lenovo/ideapad/15arh05/default.nix

26 lines
582 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ lib, ... }:
2022-09-12 13:50:33 +02:00
{
imports = [
../../../common/cpu/amd
../../../common/gpu/nvidia/prime.nix
2022-09-12 13:50:33 +02:00
../../../common/pc/laptop
../../../common/pc/laptop/acpi_call.nix
2022-09-12 13:50:33 +02:00
../../../common/pc/laptop/ssd
];
# Specify bus id of Nvidia and Intel graphics.
hardware.nvidia.prime = {
amdgpuBusId = "PCI:5:0:0";
nvidiaBusId = "PCI:1:0:0";
};
# Cooling management
services.thermald.enable = lib.mkDefault true;
2022-10-14 07:36:13 +02:00
# tlp defaults to "powersave", which doesn't exist on this laptop
services.tlp.settings = {
CPU_SCALING_GOVERNOR_ON_BAT = "schedutil";
};
2022-09-12 13:50:33 +02:00
}