summaryrefslogtreecommitdiff
path: root/common/programs/btop.nix
blob: aa548e923b2811e6295d7b33f938c6a773c0aee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, config, ... }:
{
  programs.btop = {
    enable = true;
    settings = {
      color_theme = lib.optionals config.beeMods.matugen.enable "matugen";
      theme_background = false;
      truecolor = true;
      vim_keys = true;
      rounded_corners = false;
    };
  };
}