From b6a9b4e11f8fe28b384221303b3ba530fc402661 Mon Sep 17 00:00:00 2001 From: Emmet Date: Thu, 4 Apr 2024 13:07:01 -0500 Subject: [PATCH] Removed proprietary amd gpu driver --- system/hardware-configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/hardware-configuration.nix b/system/hardware-configuration.nix index 893051f..eac3ab7 100644 --- a/system/hardware-configuration.nix +++ b/system/hardware-configuration.nix @@ -8,10 +8,10 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "kvm-amd" "amdgpu" ]; - boot.initrd.kernelModules = [ "amdgpu" ]; - boot.kernelModules = [ "kvm-amd" "amdgpu" ]; - boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower amdgpu-pro ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ]; hardware.opengl.extraPackages = [ pkgs.amdvlk ]; hardware.opengl.extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];