summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/apps/btop.nix
blob: 5bb249920eeb5375ead567db9e83afae1c7dcff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, ... }: let
  cfg = config.features.cli.apps.btop;
in {
  options.features.cli.apps.btop.enable = lib.mkEnableOption "btop";
  config = lib.mkIf cfg.enable {
    programs.btop = {
      enable = true;
      settings = {
        color_theme = "TTY";
        theme_background = false;
        update_ms = 500;
      };
    };
  };
}