configuration.nix/modules/home/programs/bottom/default.nix

35 lines
600 B
Nix
Raw Normal View History

2023-11-26 10:58:56 +01:00
{
programs.bottom = {
enable = true;
2024-05-06 23:21:25 +02:00
catppuccin.enable = true;
2023-11-26 10:58:56 +01:00
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; }
];
}
];
};
};
}