1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-15 07:29:41 +01:00
nixos-hardware/lenovo/legion/16irx9h/default.nix
Felipe Mica 684d64c67d Apply suggestions from code review
Accepting suggestions. 16irx8h should be fixed as well.

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2024-11-06 09:54:22 +00:00

33 lines
693 B
Nix

{
lib,
config,
...
}: {
imports = [
../../../common/cpu/intel
../../../common/gpu/nvidia/prime.nix
../../../common/gpu/nvidia/ada-lovelace
../../../common/pc/laptop
../../../common/pc/laptop/ssd
../../../common/hidpi.nix
];
boot.extraModulePackages = [config.boot.kernelPackages.lenovo-legion-module];
hardware = {
nvidia = {
powerManagement.enable = lib.mkDefault true;
#
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;
}