1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +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 = {
2024-03-24 11:01:23 +01:00
# For people who want to use sync instead of offload. Especially for AMD CPU users
2024-03-18 21:50:42 +01:00
sync.enable = lib.mkOverride 990 true;
};
}