Use htop-vim

This commit is contained in:
Paul-Henri Froidmont 2024-02-25 17:56:09 +01:00
parent e3d0a6ef5e
commit fde51d0902
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
3 changed files with 14 additions and 17 deletions

View file

@ -4,18 +4,17 @@ with lib;
with lib.my;
let cfg = config.modules.desktop.htop;
in {
options.modules.desktop.htop = {
enable = mkBoolOpt false;
};
options.modules.desktop.htop = { enable = mkBoolOpt false; };
config = mkIf cfg.enable {
home-manager.users.${config.user.name} = { config, ... }: {
programs.htop = {
enable = true;
package = pkgs.htop-vim;
settings = {
hide_userland_threads = true;
highlight_base_name = true;
vim_mode = true;
fields = with config.lib.htop.fields;[
fields = with config.lib.htop.fields; [
PID
USER
M_RESIDENT
@ -27,21 +26,19 @@ in {
TIME
COMM
];
} // (
with config.lib.htop; leftMeters [
} // (with config.lib.htop;
leftMeters [
(bar "LeftCPUs2")
(bar "CPU")
(bar "Memory")
(bar "Swap")
]
) // (
with config.lib.htop; rightMeters [
(bar "RightCPUs2")
(text "Tasks")
(text "LoadAverage")
(text "Uptime")
]
);
]) // (with config.lib.htop;
rightMeters [
(bar "RightCPUs2")
(text "Tasks")
(text "LoadAverage")
(text "Uptime")
]);
};
};
};