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

  #replace htop/nmon
  programs.btop = {
    enable = true;
    settings = {
      color_theme = "catppuccin_mocha";
      theme_background = false; # make btop transparent
    };
  };
}