nix-configs/modules/shell/btop.nix

15 lines
228 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ ... }:
{
home-manager.users.jade =
{ pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "gruvbox_dark";
vim_keys = true;
};
2025-03-10 14:32:28 +01:00
};
};
}