mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
modularize
This commit is contained in:
35
configs/htop.nix
Normal file
35
configs/htop.nix
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user