nix-config/home/features/cli/btop.nix

13 lines
225 B
Nix
Raw Normal View History

2023-12-27 20:03:03 +01:00
{config, ...}: {
2023-12-26 13:59:30 +01:00
programs.btop = {
enable = true;
settings = {
theme_background = false;
2023-12-27 20:03:03 +01:00
truecolor = true;
vim_keys = true;
rounded_corners = true;
proc_gradient = false;
2023-12-26 13:59:30 +01:00
};
};
}