nixdots/home/programs/terminal/tools/bottom.nix
2024-04-05 01:12:19 +02:00

29 lines
479 B
Nix

# 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;
}
];
}
];
};
};
}