From 0c43e51e603fbfcaffaf294a781c7de9b1ac2769 Mon Sep 17 00:00:00 2001 From: Emmet Date: Wed, 1 Oct 2025 18:41:12 -0500 Subject: [PATCH] Just use mesa.. --- hosts/snowfire/hardware-configuration.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hosts/snowfire/hardware-configuration.nix b/hosts/snowfire/hardware-configuration.nix index 5a261a2b..2c624a5f 100644 --- a/hosts/snowfire/hardware-configuration.nix +++ b/hosts/snowfire/hardware-configuration.nix @@ -9,6 +9,8 @@ ]; services.fstrim.enable = true; + services.lact.enable = true; + #services.lact.settings = {}; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "radeon" ]; boot.initrd.kernelModules = [ "radeon" ]; @@ -45,8 +47,8 @@ enable32Bit = true; package = (mesa.overrideAttrs fn).drivers; package32 = (pkgsi686Linux.mesa.overrideAttrs fn).drivers; - extraPackages = with pkgs; [ amdvlk ]; - extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ]; + #extraPackages = with pkgs; [ amdvlk ]; + #extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ]; }; }; hardware.opengl.extraPackages = [ pkgs.rocmPackages.clr.icd ]; @@ -59,7 +61,8 @@ hardware.amdgpu.initrd.enable = true; hardware.amdgpu.opencl.enable = true; - hardware.amdgpu.amdvlk.enable = true; + #hardware.amdgpu.amdvlk.enable = true; + #hardware.amdgpu.overdrive.enable = true; environment.sessionVariables = { VK_ICD_FILENAMES = "/run/opengl-driver/share/vulkan/icd.d/radeon_icd.x86_64.json"; # fix for godot };