291c3ee610
This is now provided in nixpkgs (see https://github.com/NixOS/nixpkgs/pull/318175).
11 lines
177 B
Nix
11 lines
177 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ../hybrid ];
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware = {
|
|
nvidia.prime.offload.enable = false;
|
|
amdgpu.opencl = false;
|
|
};
|
|
}
|