Skip to content

Commit

Permalink
chore(nvidia): enable dynamicBoost
Browse files Browse the repository at this point in the history
  • Loading branch information
raexera committed Nov 26, 2024
1 parent 380016c commit 41c099b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hosts/modules/hardware/gpu/nvidia/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@ in {
hardware.nvidia = {
package = mkDefault nvidiaPackage;
open = mkDefault false;
modesetting.enable = mkDefault true;

powerManagement.enable = mkDefault true;
dynamicBoost.enable = mkDefault true;
modesetting.enable = mkDefault true;

prime.offload = {
enable = mkIf (pCfg.nvidiaBusId != "" && (pCfg.intelBusId != "" || pCfg.amdgpuBusId != "")) true;
enableOffloadCmd = mkIf pCfg.offload.enable true;
Expand Down

0 comments on commit 41c099b

Please sign in to comment.