2024-11-16 20:23:16 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-12 23:29:50 +00:00
|
|
|
}: let
|
2024-11-17 06:34:40 +00:00
|
|
|
cfg = config.marleyos.programs.btop;
|
2025-01-12 23:29:50 +00:00
|
|
|
in {
|
2025-01-14 05:05:10 +00:00
|
|
|
options.marleyos.programs.btop.enable = lib.mkEnableOption "btop";
|
2024-11-16 20:23:16 +00:00
|
|
|
|
2025-01-14 05:05:10 +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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|