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

@ -49,7 +49,7 @@ with lib.my; {
inetutils
man
htop
htop-vim
ncdu
nload
pciutils

View file

@ -67,7 +67,7 @@
networking.firewall.allowedTCPPorts = [ 53 ];
networking.firewall.allowedUDPPorts = [ 53 ];
environment.systemPackages = with pkgs; [ vim htop ];
environment.systemPackages = with pkgs; [ vim htop-vim ];
system.stateVersion = "22.05";
}

View file

@ -4,13 +4,12 @@ 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;
@ -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 [
]) // (with config.lib.htop;
rightMeters [
(bar "RightCPUs2")
(text "Tasks")
(text "LoadAverage")
(text "Uptime")
]
);
]);
};
};
};