Alexandre 1fb2bebc88
All checks were successful
Check config / build (push) Successful in 9m43s
Started dentritic pattern
2026-06-20 00:15:16 +02:00

13 lines
231 B
Nix

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