This commit is contained in:
2026-02-20 00:10:40 +01:00
commit 166d152536
9 changed files with 193 additions and 0 deletions

11
modules/btop.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
vim_keys = true;
color_theme = "catppuccin_mocha";
};
};
}