summaryrefslogtreecommitdiff
path: root/common/programs/btop.nix
blob: 66001887b9656f90e663e44977934e9268b84aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, config, ... }:
{
  programs.btop = {
    enable = true;
    settings = {
      color_theme =
        if
          config.beeMods.matugen.enable
          && config.beeMods.windowManagers.beeConfig.enable
          && !config.beeMods.windowManagers.noctalia
        then
          "matugen"
        else
          "noctalia";
      theme_background = false;
      truecolor = true;
      vim_keys = true;
      rounded_corners = false;
    };
  };
}