2022-12-31 05:52:38 -05:00
|
|
|
{ lib, ... }:
|
2022-06-23 03:29:16 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/intel
|
2022-11-12 20:54:59 -05:00
|
|
|
../../../common/gpu/nvidia/prime.nix
|
2022-06-23 03:29:16 -04:00
|
|
|
../../../common/pc/laptop
|
|
|
|
../../../common/pc/laptop/ssd
|
2023-04-05 10:56:09 -04:00
|
|
|
../../../common/hidpi.nix
|
2022-06-23 03:29:16 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# Specify bus id of Nvidia and Intel graphics.
|
|
|
|
hardware.nvidia.prime = {
|
|
|
|
intelBusId = "PCI:00:02:0";
|
|
|
|
nvidiaBusId = "PCI:01:00:0";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Cooling management
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
2023-04-05 10:56:09 -04:00
|
|
|
|
|
|
|
# √(2560² + 1600²) px / 16 in ≃ 189 dpi
|
|
|
|
services.xserver.dpi = 189;
|
2022-06-23 03:29:16 -04:00
|
|
|
}
|