318718aabd
note that it may not work on small monitors. keep that in mind. also the new preset is located at `btop -p 2`
14 lines
396 B
Nix
14 lines
396 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.btop = {
|
|
enable = true;
|
|
package = pkgs.btop.override { rocmSupport = true; };
|
|
settings = {
|
|
vim_keys = true;
|
|
color_theme = "TTY";
|
|
theme_background = false;
|
|
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty cpu:0:default,mem:0:default,net:0:default,gpu0:0:default";
|
|
};
|
|
};
|
|
}
|