2022-07-17 18:19:45 +02:00
|
|
|
{ lib, config, ... }:
|
2023-12-25 21:14:17 +01:00
|
|
|
{
|
2022-03-23 13:33:30 +01:00
|
|
|
imports = [
|
|
|
|
../../../common/cpu/amd
|
|
|
|
../../../common/gpu/amd
|
2022-11-13 02:54:59 +01:00
|
|
|
../../../common/gpu/nvidia/prime.nix
|
2024-09-04 19:16:57 +02:00
|
|
|
../../../common/gpu/nvidia/ampere
|
2023-03-25 14:23:33 +01:00
|
|
|
../../../common/hidpi.nix
|
2022-03-23 13:33:30 +01:00
|
|
|
../../../common/pc/laptop
|
|
|
|
../../../common/pc/laptop/ssd
|
|
|
|
];
|
|
|
|
|
|
|
|
hardware.nvidia.prime = {
|
|
|
|
amdgpuBusId = "PCI:5:0:0";
|
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
|
2023-03-25 14:23:33 +01:00
|
|
|
# √(3840² + 2160²) px / 15.60 in ≃ 282 dpi
|
|
|
|
services.xserver.dpi = 282;
|
2022-03-23 13:33:30 +01:00
|
|
|
}
|