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

15 lines
No EOL
329 B
Nix

{ ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "Dracula";
theme_background = false;
truecolor = true;
shown_boxes = "proc cpu mem net gpu0";
update_ms = 100;
temp_scale = "fahrenheit";
};
};
}