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

30 lines
507 B
Nix
Raw Normal View History

2024-11-16 12:23:16 -08:00
{
lib,
config,
...
}:
let
inherit (lib) mkEnableOption mkIf;
inherit (lib.marleyos) 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
{
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;
2024-11-16 22:44:45 -08:00
rose-pine = mkIf colors.isRosePine enabled;
2024-11-16 12:23:16 -08:00
settings = {
theme_background = false;
truecolor = true;
vim_keys = true;
};
};
};
}