summaryrefslogtreecommitdiff
path: root/home-manager/btop.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
commitd9e3d1977e79ea36da7bc615699b67f431913c23 (patch)
tree3627bb75e08a8a88c3706e9d8b96751fbf62143f /home-manager/btop.nix
parent8f317ee332fffe934ec8bf61a77efc1eb57bb9df (diff)
adding theming and config from ryan4yin nix-config on git
Diffstat (limited to 'home-manager/btop.nix')
-rw-r--r--home-manager/btop.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home-manager/btop.nix b/home-manager/btop.nix
new file mode 100644
index 0000000..b736efe
--- /dev/null
+++ b/home-manager/btop.nix
@@ -0,0 +1,12 @@
+{ catppuccin-btop, ... }: {
+ home.file.".config/btop/themes".source = "${catppuccin-btop}/themes";
+
+ #replace htop/nmon
+ programs.btop = {
+ enable = true;
+ settings = {
+ color_theme = "catppuccing_mocha";
+ theme_background = false; # make btop transparent
+ };
+ };
+}