This commit is contained in:
Schrottkatze 2026-03-28 17:23:29 +01:00
commit 70e5b25e38
No known key found for this signature in database
19 changed files with 286 additions and 236 deletions

View file

@ -1,22 +1,18 @@
{ ... }:
{ pkgs, ... }:
{
home-manager.users.jade =
{ pkgs, ... }:
{
programs.btop = {
enable = true;
package = pkgs.btop-rocm;
settings = {
shown_boxes = "cpu mem net proc gpu0";
color_theme = "gruvbox_dark";
vim_keys = true;
proc_per_core = true;
proc_filter_kernel = true;
proc_aggregate = true;
cpu_graph_upper = "total";
cpu_graph_lower = "user";
update_ms = 500;
};
};
programs.btop = {
enable = true;
package = pkgs.btop-rocm;
settings = {
shown_boxes = "cpu mem net proc gpu0";
color_theme = "gruvbox_dark";
vim_keys = true;
proc_per_core = true;
proc_filter_kernel = true;
proc_aggregate = true;
cpu_graph_upper = "total";
cpu_graph_lower = "user";
update_ms = 500;
};
};
}