26 lines
420 B
Nix
26 lines
420 B
Nix
{
|
|
config,
|
|
lib,
|
|
namespace,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf mkEnableOption;
|
|
|
|
cfg = config.${namespace}.apps.btop;
|
|
in {
|
|
options.${namespace}.apps.btop = {
|
|
enable = mkEnableOption "btop";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.btop = {
|
|
enable = true;
|
|
settings = {
|
|
theme_background = false;
|
|
vim_keys = true;
|
|
color_theme = "gruvbox_dark_v2";
|
|
};
|
|
};
|
|
};
|
|
}
|