refactor(graphics): add amdgpu_top to systempackages

This commit is contained in:
2026-03-06 18:16:40 +01:00
parent 80638a920b
commit 53c2cf1a63

View File

@@ -5,11 +5,13 @@
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
enable32Bit = true; enable32Bit = true;
extraPackages = with pkgs; [
amdgpu_top
];
}; };
# install amdgpu_top
environment.systemPackages = with pkgs; [
amdgpu_top
];
# sets boot.initrd.kernelModules = amdgpu # add amdgpu to the initrd for plymouth
hardware.amdgpu.initrd.enable = true; hardware.amdgpu.initrd.enable = true;
} }