2022-09-12 13:50:33 +02:00
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/amd
|
|
|
|
../../../common/gpu/nvidia.nix
|
|
|
|
../../../common/pc/laptop
|
2022-10-14 07:38:50 +02:00
|
|
|
../../../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
|
|
|
}
|