fix formatting

This commit is contained in:
Melvin Ragusa
2026-02-03 11:14:57 +01:00
parent 5e91500f25
commit b53c2ecaa9
10 changed files with 147 additions and 93 deletions

View File

@@ -9,6 +9,9 @@
}:
{
# ═══════════════════════════════════════════════════════════════
# AMD GPU DRIVERS
# ═══════════════════════════════════════════════════════════════
# Enable OpenGL/Vulkan
hardware.graphics = {
enable = true;
@@ -33,7 +36,10 @@
# RADV (Mesa Vulkan driver) is enabled by default and is the best choice for gaming
# No need for AMD_VULKAN_ICD environment variable anymore
# CoreCtrl for fan curves, overclocking, and GPU monitoring
# ═══════════════════════════════════════════════════════════════
# CORECTRL
# ═══════════════════════════════════════════════════════════════
# Fan curves, overclocking, and GPU monitoring
programs.corectrl.enable = true;
# AMD GPU overdrive/overclocking support
@@ -44,17 +50,19 @@
# NOTE: Kernel params (amdgpu.ppfeaturemask) are in configuration.nix
# GPU monitoring tools
# ═══════════════════════════════════════════════════════════════
# GPU PACKAGES
# ═══════════════════════════════════════════════════════════════
environment.systemPackages = with pkgs; [
# Monitoring
# ─── Monitoring ───
radeontop # AMD GPU monitoring (like nvidia-smi)
nvtopPackages.amd # Modern GPU monitor with AMD support
# Vulkan tools
# ─── Vulkan Tools ───
vulkan-tools # vulkaninfo, etc.
vulkan-loader
# Video acceleration verification
# ─── Video Acceleration ───
libva-utils # vainfo - verify VA-API
vdpauinfo # Verify VDPAU
];