-
-
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.
asus/zephyrus/gu605my: fixed architecture and added dynamic boost as …
…enabled by default
- Loading branch information
1 parent
aac7c50
commit cfb3537
Showing
1 changed file
with
9 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ ... }: | ||
{ lib, ... }: | ||
|
||
{ | ||
imports = [ | ||
../../../common/cpu/intel | ||
../../../common/gpu/nvidia/prime.nix | ||
../../../common/gpu/nvidia/ampere | ||
../../../common/gpu/nvidia/ada-lovelace | ||
../../../common/pc/laptop | ||
../../../common/pc/ssd | ||
]; | ||
|
||
hardware.nvidia.prime = { | ||
intelBusId = "PCI:0:2:0"; | ||
nvidiaBusId = "PCI:1:0:0"; | ||
hardware.nvidia = { | ||
prime = { | ||
intelBusId = "PCI:0:2:0"; | ||
nvidiaBusId = "PCI:1:0:0"; | ||
}; | ||
|
||
dynamicBoost.enable = lib.mkDefault true; | ||
}; | ||
} |