mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:59:42 +00:00
29 lines
479 B
Nix
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;
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|