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