From d914905d01e185e4541e7b472c28b1461227c747 Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 8 Mar 2026 10:31:56 -0500 Subject: [PATCH] add(apps): bottom Added `btm`; a lightweight, diagnostic application. It is preferrable to `btop`. --- apps/bottom/default.nix | 7 +++++++ modules/home/apps.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 apps/bottom/default.nix diff --git a/apps/bottom/default.nix b/apps/bottom/default.nix new file mode 100644 index 0000000..b36d219 --- /dev/null +++ b/apps/bottom/default.nix @@ -0,0 +1,7 @@ +{pkgs}: { + programs.bottom = { + enable = true; + settings = { + }; + }; +} diff --git a/modules/home/apps.nix b/modules/home/apps.nix index 448f981..98f9f3e 100644 --- a/modules/home/apps.nix +++ b/modules/home/apps.nix @@ -6,6 +6,7 @@ ../../apps/zathura ../../apps/mpv ../../apps/mako + ../../apps/bottom # ../../apps/starship ]; }