1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-24 13:38:31 +02:00
nixos-hardware/lenovo/legion/16ithg6/default.nix
2023-04-05 16:56:09 +02:00

24 lines
503 B
Nix

{ lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/gpu/nvidia/prime.nix
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/hidpi.nix
];
# 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;
# √(2560² + 1600²) px / 16 in ≃ 189 dpi
services.xserver.dpi = 189;
}