mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
16ach6h: disable amdvlk and rocm-opencl for nvidia-only mode
This commit is contained in:
parent
5af4dc5d52
commit
be60a34c1a
2 changed files with 14 additions and 2 deletions
|
@ -7,6 +7,12 @@
|
||||||
# This specialisation is for the case where "DDG" (Dual-Direct GFX, A hardware feature that can enable in bios) is enabled, since the amd igpu is blocked at hardware level and the built-in display is directly connected to the dgpu, we no longer need the amdgpu and prime configuration.
|
# This specialisation is for the case where "DDG" (Dual-Direct GFX, A hardware feature that can enable in bios) is enabled, since the amd igpu is blocked at hardware level and the built-in display is directly connected to the dgpu, we no longer need the amdgpu and prime configuration.
|
||||||
system.nixos.tags = [ "Dual-Direct-GFX-Mode" ];
|
system.nixos.tags = [ "Dual-Direct-GFX-Mode" ];
|
||||||
services.xserver.videoDrivers = [ "nvidia" ]; # This will override services.xserver.videoDrivers = lib.mkDefault [ "amdgpu" "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ]; # This will override services.xserver.videoDrivers = lib.mkDefault [ "amdgpu" "nvidia" ];
|
||||||
hardware.nvidia.prime.offload.enable = false;
|
hardware = {
|
||||||
|
nvidia.prime.offload.enable = false;
|
||||||
|
amdgpu = {
|
||||||
|
amdvlk = false;
|
||||||
|
opencl = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -3,5 +3,11 @@
|
||||||
{
|
{
|
||||||
imports = [ ../hybrid ];
|
imports = [ ../hybrid ];
|
||||||
services.xserver.videoDrivers = [ "nvidia" ]; # This will override services.xserver.videoDrivers = lib.mkDefault [ "amdgpu" "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ]; # This will override services.xserver.videoDrivers = lib.mkDefault [ "amdgpu" "nvidia" ];
|
||||||
hardware.nvidia.prime.offload.enable = false;
|
hardware = {
|
||||||
|
nvidia.prime.offload.enable = false;
|
||||||
|
amdgpu = {
|
||||||
|
amdvlk = false;
|
||||||
|
opencl = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue