784e44901d
Fixes btop not displaying GPU information by compiling it with rocm support enabled.
13 lines
227 B
Nix
13 lines
227 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.btop = {
|
|
enable = true;
|
|
package = pkgs.btop.override { rocmSupport = true; };
|
|
settings = {
|
|
vim_keys = true;
|
|
color_theme = "TTY";
|
|
theme_background = false;
|
|
};
|
|
};
|
|
}
|