2022-11-24 10:39:20 -05:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
2022-11-23 14:36:56 -05:00
|
|
|
imports = [
|
|
|
|
../../../common/cpu/amd
|
|
|
|
../../../common/gpu/amd
|
|
|
|
../../../common/gpu/nvidia/prime.nix
|
|
|
|
../../../common/pc/laptop
|
|
|
|
../../../common/pc/laptop/ssd
|
2022-12-15 18:59:45 -05:00
|
|
|
./edid
|
2022-11-23 14:36:56 -05:00
|
|
|
];
|
|
|
|
|
2022-12-15 18:59:45 -05:00
|
|
|
hardware.amdgpu.loadInInitrd = lib.mkDefault false;
|
|
|
|
|
2022-11-23 14:36:56 -05:00
|
|
|
hardware.nvidia.prime = {
|
|
|
|
amdgpuBusId = "PCI:6:0:0";
|
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
}
|