summaryrefslogtreecommitdiff
path: root/modules/home-manager/btop.nix
blob: 352d3bbbe07ed22309f68a246e7bd2f715867920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs, ... }: {
  home.file.".config/btop/themes".source = "${inputs.catppuccin-btop}/themes";

  #replace htop/nmon
  programs.btop = {
    enable = true;
    settings = {
      color_theme = "catppuccin_mocha";
      theme_background = false; # make btop transparent
      vim_keys = true;
      proc_aggregate = true; # aggregate subprocess resources in tree view
    };
  };
}