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

22 lines
350 B
Nix
Raw Normal View History

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