From c829ae4e9df9c02f7bfb3ec509598148c9366fdd Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 15 Jun 2025 13:17:30 +0100 Subject: [PATCH] hosts/helios: blacklist amdgpu --- hosts/helios/hardware-configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/helios/hardware-configuration.nix b/hosts/helios/hardware-configuration.nix index 6a9c89d..22797aa 100644 --- a/hosts/helios/hardware-configuration.nix +++ b/hosts/helios/hardware-configuration.nix @@ -22,6 +22,7 @@ ]; initrd.kernelModules = [ ]; initrd.supportedFilesystems = [ "zfs" ]; + blacklistedKernelModules = [ "amdgpu" ]; kernelModules = [ "kvm-intel" ]; kernelParams = [ "elevator=none" ]; extraModulePackages = [ ];