configuration.nix/home/modules/programs/bottom/default.nix
2024-07-05 14:17:09 +02:00

34 lines
570 B
Nix

{
programs.bottom = {
enable = true;
settings = {
flags = {
rate = "250ms";
};
row = [
{
ratio = 40;
child = [
{ type = "cpu"; }
{ type = "mem"; }
{ type = "net"; }
];
}
{
ratio = 35;
child = [
{ type = "temp"; }
{ type = "disk"; }
];
}
{
ratio = 40;
child = [
{ type = "proc"; default = true; }
];
}
];
};
};
}