From 27d69187ae0404f8f627bb4119c1c7e359bfed84 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Sun, 5 Nov 2023 22:16:46 +0100 Subject: [PATCH] add btop config --- modules/home/btop/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/home/btop/default.nix diff --git a/modules/home/btop/default.nix b/modules/home/btop/default.nix new file mode 100644 index 0000000..4bac962 --- /dev/null +++ b/modules/home/btop/default.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + programs.btop = { + enable = true; + + settings = { + color_theme = "dracula"; + theme_background = false; + }; + }; +} \ No newline at end of file