1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-09 20:16:30 +02:00
nixos-hardware/common/gpu/nvidia/prime-sync.nix

11 lines
212 B
Nix
Raw Normal View History

2024-03-18 21:50:42 +01:00
{ lib, config, ... }:
{
imports = [ ./. ];
hardware.nvidia.prime = {
# For people who want to use sync insted of offload. Esipecially for AMD CPU users
sync.enable = lib.mkOverride 990 true;
};
}