fix(nix): fine tune amd gpu config

This commit is contained in:
Lucas Sta Maria 2025-08-12 12:02:04 +00:00
parent 4c1565dec2
commit a96642fc4a
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -11,6 +11,9 @@
# Network Manager
networking.networkmanager.enable = true;
# Security
security.rtkit.enable = true;
# Fonts
fonts = {
fontDir.enable = true;
@ -61,6 +64,7 @@
hardware.cpu.amd.updateMicrocode = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
mesa
libva
@ -69,6 +73,7 @@
vulkan-validation-layers
amdvlk
mesa.opencl
rocmPackages.clr.icd
];
};
hardware.amdgpu.amdvlk.enable = true;