From 061dd39ab6a544a81cbe3f26af4f722388b13946 Mon Sep 17 00:00:00 2001 From: Tyler Beckman Date: Fri, 22 Nov 2024 12:29:00 -0700 Subject: [PATCH] Add btop configuration --- home-manager/modules/shell/btop.nix | 14 ++++++++++++++ home-manager/modules/shell/default.nix | 1 + 2 files changed, 15 insertions(+) create mode 100644 home-manager/modules/shell/btop.nix diff --git a/home-manager/modules/shell/btop.nix b/home-manager/modules/shell/btop.nix new file mode 100644 index 0000000..bf86364 --- /dev/null +++ b/home-manager/modules/shell/btop.nix @@ -0,0 +1,14 @@ +{ ... }: +{ + programs.btop = { + enable = true; + + settings = { + color_theme = "Dracula"; + theme_background = false; + truecolor = true; + shown_boxes = "proc cpu mem net gpu0"; + update_ms = 100; + }; + }; +} \ No newline at end of file diff --git a/home-manager/modules/shell/default.nix b/home-manager/modules/shell/default.nix index 23262c7..9204c4c 100644 --- a/home-manager/modules/shell/default.nix +++ b/home-manager/modules/shell/default.nix @@ -4,5 +4,6 @@ ./zsh.nix ./starship.nix ./konsole.nix + ./btop.nix ]; } \ No newline at end of file