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

21 lines
316 B
Nix
Raw Normal View History

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