mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
zephyrus ga401: Enable nvidia powerManagement & modesetting (nvidia-drm)
This commit is contained in:
parent
5c55f2428f
commit
0d8c852503
1 changed files with 11 additions and 3 deletions
|
@ -10,9 +10,17 @@
|
||||||
../../../common/pc/laptop/ssd
|
../../../common/pc/laptop/ssd
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.nvidia.prime = {
|
hardware.nvidia = {
|
||||||
amdgpuBusId = "PCI:4:0:0";
|
# PCI-Express Runtime D3 Power Management is enabled by default on this laptop
|
||||||
nvidiaBusId = "PCI:1:0:0";
|
# But it can fix screen tearing & suspend/resume screen corruption in sync mode
|
||||||
|
modesetting.enable = lib.mkDefault true;
|
||||||
|
# Enable DRM kernel mode setting
|
||||||
|
powerManagement.enable = lib.mkDefault true;
|
||||||
|
|
||||||
|
prime = {
|
||||||
|
amdgpuBusId = "PCI:4:0:0";
|
||||||
|
nvidiaBusId = "PCI:1:0:0";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
Loading…
Reference in a new issue