nix-config/home/features/cli/btop.nix
2024-12-02 20:15:40 +01:00

12 lines
225 B
Nix

{config, ...}: {
programs.btop = {
enable = true;
settings = {
theme_background = false;
truecolor = true;
vim_keys = true;
rounded_corners = true;
proc_gradient = false;
};
};
}