nixdots/home/programs/terminal/tools/bottom.nix

29 lines
479 B
Nix
Raw Normal View History

2024-04-04 23:04:19 +00:00
# Yet another system monitor
{
programs.bottom = {
enable = false;
settings = {
flags.group_processes = true;
row = [
{
ratio = 2;
child = [
{type = "cpu";}
{type = "mem";}
];
}
{
ratio = 3;
child = [
{
type = "proc";
ratio = 1;
default = true;
}
];
}
];
};
};
}