nixpkgs/nixos/modules/hardware/video/amdgpu.nix
2016-08-21 11:58:14 +02:00

10 lines
164 B
Nix

{ config, lib, ... }:
with lib;
{
config = mkIf (elem "amdgpu" config.services.xserver.videoDrivers) {
boot.blacklistedKernelModules = [ "radeon" ];
};
}