nixos/home-manager/modules/btop.nix

11 lines
171 B
Nix
Raw Normal View History

2024-03-16 19:03:53 +01:00
{ inputs, ... }: {
# Btop settings
programs.btop = {
enable = true;
settings = {
color_theme = "catppuccin_frappe";
vim_keys = true;
};
};
}