nix-config/modules/home-manager/terminal/btop.nix

17 lines
257 B
Nix
Raw Normal View History

2024-05-16 17:49:31 -05:00
{
config,
pkgs,
lib,
...
}: {
options.user.btop.enable = lib.mkEnableOption "enable btop";
config = lib.mkIf config.user.btop.enable {
programs.btop = {
enable = true;
settings = {
vim_keys = true;
};
2024-05-16 17:49:31 -05:00
};
};
}