mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
9 lines
164 B
Nix
9 lines
164 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
{
|
|
config = mkIf (elem "amdgpu" config.services.xserver.videoDrivers) {
|
|
boot.blacklistedKernelModules = [ "radeon" ];
|
|
};
|
|
}
|
|
|