I am batman

This commit is contained in:
2026-07-10 20:07:29 -04:00
commit 4aac54bff6
175 changed files with 18136 additions and 0 deletions

14
modules/misc/btop.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
# color_theme = "gruvbox-dark"; # You can change this to any other theme
theme_background = false;
vim_keys = true;
# You can add more settings from: https://github.com/aristocratos/btop#configuration
};
};
}