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

30 lines
470 B
Nix
Raw Normal View History

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