mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
48 lines
1.0 KiB
Nix
48 lines
1.0 KiB
Nix
{
|
|
home-manager.users.me = {
|
|
programs.htop = {
|
|
enable = true;
|
|
colorScheme = 0;
|
|
accountGuestInCpuMeter = true;
|
|
cpuCountFromZero = false;
|
|
delay = 15;
|
|
detailedCpuTime = false;
|
|
headerMargin = true;
|
|
hideKernelThreads = true;
|
|
hideThreads = false;
|
|
hideUserlandThreads = false;
|
|
highlightBaseName = true;
|
|
highlightMegabytes = true;
|
|
highlightThreads = true;
|
|
shadowOtherUsers = true;
|
|
showProgramPath = false;
|
|
showThreadNames = true;
|
|
sortDescending = true;
|
|
sortKey = "PERCENT_CPU";
|
|
treeView = true;
|
|
updateProcessNames = false;
|
|
meters = {
|
|
left = [
|
|
{
|
|
kind = "LeftCPUs2";
|
|
mode = 1;
|
|
}
|
|
{
|
|
kind = "RightCPUs2";
|
|
mode = 1;
|
|
}
|
|
{
|
|
kind = "Memory";
|
|
mode = 1;
|
|
}
|
|
{
|
|
kind = "Swap";
|
|
mode = 1;
|
|
}
|
|
];
|
|
right = [ "Uptime" "Tasks" "LoadAverage" "Battery" ];
|
|
};
|
|
};
|
|
};
|
|
}
|