nixos/home-manager/modules/btop.nix

11 lines
171 B
Nix

{ inputs, ... }: {
# Btop settings
programs.btop = {
enable = true;
settings = {
color_theme = "catppuccin_frappe";
vim_keys = true;
};
};
}