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