1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware.git synced 2024-10-18 14:35:21 -04:00

Enable NVIDIA power management for Dell XPS 7590

This commit is contained in:
Ghislain Vaillant 2023-03-07 21:08:32 +01:00 committed by GitHub
parent f6610997b0
commit e72756d0b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,11 +5,21 @@
../../../../common/gpu/nvidia/prime.nix ../../../../common/gpu/nvidia/prime.nix
]; ];
hardware.nvidia.prime = { hardware.nvidia = {
# Bus ID of the Intel GPU. powerManagement = {
intelBusId = lib.mkDefault "PCI:0:2:0"; # Enable NVIDIA power management.
enable = lib.mkDefault true;
# Bus ID of the NVIDIA GPU. # Enable dynamic power management.
nvidiaBusId = lib.mkDefault "PCI:1:0:0"; finegrained = lib.mkDefault true;
};
prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2:0";
# Bus ID of the NVIDIA GPU.
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
}; };
} }