nix-config/modules/home-manager/terminal/btop.nix
2024-05-16 17:49:31 -05:00

14 lines
131 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.btop = {
enable = true;
settings = {
vim_keys = true;
};
};
}