nix-config/modules/htop.nix
2023-05-16 17:18:06 -04:00

10 lines
130 B
Nix

{ pkgs, ... }:
{
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = { tree_view = 1; };
};
}