dotfiles/modules/nixos/apps/btop/default.nix

26 lines
411 B
Nix
Raw Normal View History

2023-06-11 01:07:00 +00:00
{
options,
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.aa.apps.btop;
in {
options.aa.apps.btop = with types; {
enable = mkEnableOption "btop";
};
config = mkIf cfg.enable {
aa.home.extraOptions.programs.btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
color_theme = "gruvbox_dark_v2";
};
};
};
}