nixos-hardware/common/gpu/nvidia/prime-sync.nix

11 lines
212 B
Nix
Raw Permalink Normal View History

2024-03-18 16:50:42 -04:00
{ lib, config, ... }:
{
imports = [ ./. ];
hardware.nvidia.prime = {
2024-03-24 06:01:23 -04:00
# For people who want to use sync instead of offload. Especially for AMD CPU users
2024-03-18 16:50:42 -04:00
sync.enable = lib.mkOverride 990 true;
};
}