summary refs log tree commit diff
path: root/nixos/modules/hardware/video/amdgpu.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/video/amdgpu.nix')
-rw-r--r--nixos/modules/hardware/video/amdgpu.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/nixos/modules/hardware/video/amdgpu.nix b/nixos/modules/hardware/video/amdgpu.nix
deleted file mode 100644
index 42fc8fa362d..00000000000
--- a/nixos/modules/hardware/video/amdgpu.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ config, lib, ... }:
-
-with lib;
-{
-  config = mkIf (elem "amdgpu" config.services.xserver.videoDrivers) {
-    boot.blacklistedKernelModules = [ "radeon" ];
-  };
-}
-