-
-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the Legion Pro 7 16IRX9H model. Initially, I simply copied it …
…from the 16IRX8H, but I am still having issues with WiFi and sound (to be resolved). Ref.: https://psref.lenovo.com/Product/Legion/Legion_Pro_7_16IRX9H
- Loading branch information
1 parent
166dee4
commit 5e06943
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
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.initrd.kernelModules = ["nvidia"]; | ||
boot.extraModulePackages = [config.boot.kernelPackages.lenovo-legion-module config.boot.kernelPackages.nvidia_x11]; | ||
|
||
hardware = { | ||
nvidia = { | ||
modesetting.enable = lib.mkDefault true; | ||
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; | ||
} |