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 ]; };