This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/shell/btop.nix

14 lines
162 B
Nix
Raw Normal View History

2024-09-23 07:54:46 +00:00
{ ... }:
{
programs = {
btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
};
};
};
}