summary refs log tree commit diff
path: root/nixos/modules/hardware/video/amdgpu.nix
blob: 42fc8fa362de15e4225d5c9b4d598dc764b6e4a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, lib, ... }:

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