Alexandre 22926c27fe
All checks were successful
Check config / build (push) Successful in 51s
Added nvtop
2026-07-14 18:29:32 +02:00

13 lines
254 B
Nix

{ self, inputs, ... }:
{
flake.nixosModules.amd = { pkgs, lib, ... }: {
hardware.graphics = {
enable = true;
enable32Bit = true;
};
environment = {
systemPackages = [ pkgs.btop-rocm pkgs.nvtopPackages.amd ];
};
};
}