mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
nixos: blacklist radeon module if using amdgpu
This commit is contained in:
parent
ab95a3ff7f
commit
b4821ece01
9
nixos/modules/hardware/video/amdgpu.nix
Normal file
9
nixos/modules/hardware/video/amdgpu.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
config = mkIf (elem "amdgpu" config.services.xserver.videoDrivers) {
|
||||||
|
boot.blacklistedKernelModules = [ "radeon" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -37,9 +37,10 @@
|
|||||||
./hardware/network/rtl8192c.nix
|
./hardware/network/rtl8192c.nix
|
||||||
./hardware/opengl.nix
|
./hardware/opengl.nix
|
||||||
./hardware/pcmcia.nix
|
./hardware/pcmcia.nix
|
||||||
|
./hardware/video/amdgpu.nix
|
||||||
|
./hardware/video/ati.nix
|
||||||
./hardware/video/bumblebee.nix
|
./hardware/video/bumblebee.nix
|
||||||
./hardware/video/nvidia.nix
|
./hardware/video/nvidia.nix
|
||||||
./hardware/video/ati.nix
|
|
||||||
./hardware/video/webcam/facetimehd.nix
|
./hardware/video/webcam/facetimehd.nix
|
||||||
./i18n/input-method/default.nix
|
./i18n/input-method/default.nix
|
||||||
./i18n/input-method/fcitx.nix
|
./i18n/input-method/fcitx.nix
|
||||||
|
Loading…
Reference in New Issue
Block a user