nix-configs/modules/shell/btop.nix
2025-03-10 14:52:01 +01:00

11 lines
200 B
Nix

{...}: {
home-manager.users.jade = {pkgs, ...}: {
programs.btop = {
enable = true;
settings = {
color_theme = "gruvbox_dark";
vim_keys = true;
};
};
};
}