marleyos/modules/home/programs/btop/default.nix

24 lines
380 B
Nix
Raw Normal View History

2024-11-16 12:23:16 -08:00
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
2024-11-16 12:23:16 -08:00
cfg = config.marleyos.programs.btop;
in {
2024-11-16 23:53:46 -08:00
options.marleyos.programs.btop.enable = mkEnableOption "btop";
2024-11-16 12:23:16 -08:00
config = mkIf cfg.enable {
programs.btop = {
enable = true;
settings = {
theme_background = false;
truecolor = true;
vim_keys = true;
};
};
};
}