nix/home-manager/modules/shell/btop.nix

14 lines
290 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "Dracula";
theme_background = false;
truecolor = true;
shown_boxes = "proc cpu mem net gpu0";
update_ms = 100;
};
};
}