From 16ea94e160c720685e02fe23afae87b71f17c8a5 Mon Sep 17 00:00:00 2001 From: aaron Date: Thu, 5 Mar 2026 21:58:36 +0100 Subject: [PATCH] feature(graphics): add amdgpu_top to the default pkgs --- modules/nixos/graphics.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nixos/graphics.nix b/modules/nixos/graphics.nix index cfa9407..2f7e1e6 100644 --- a/modules/nixos/graphics.nix +++ b/modules/nixos/graphics.nix @@ -1,11 +1,12 @@ { config, lib, pkgs, ... }: { - # enable GPU acceleration (mesa, vulkan, egl) + # enable amd GPU acceleration (mesa, vulkan, egl) hardware.graphics = { enable = true; enable32Bit = true; extraPackages = with pkgs; [ + amdgpu_top ]; };