feature(graphics): add amdgpu_top to the default pkgs

This commit is contained in:
2026-03-05 21:58:36 +01:00
parent afd3113cf3
commit 16ea94e160

View File

@@ -1,11 +1,12 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
# enable GPU acceleration (mesa, vulkan, egl) # enable amd GPU acceleration (mesa, vulkan, egl)
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
enable32Bit = true; enable32Bit = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
amdgpu_top
]; ];
}; };