brainix/sources/nixpkgs/nixos/modules/hardware/video/amdgpu.nix
2026-02-13 17:06:24 +09:00

9 lines
164 B
Nix

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