Files
LillyOS/home/terminal/btop.nix
2026-01-05 04:04:42 +01:00

11 lines
157 B
Nix

{ pkgs, ... }:
{
programs.btop = {
enable = true;
package = pkgs.btop.override {
cudaSupport = true;
rocmSupport = true;
};
};
}