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

{ ... }:
{
programs = {
btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
};
};
};
}