From 0408a1f6835990cb05ec52df89c378a3cb138665 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 23 Sep 2024 09:54:46 +0200 Subject: [PATCH] feat(shell): add btop --- shell/btop.nix | 13 +++++++++++++ shell/default.nix | 1 + 2 files changed, 14 insertions(+) create mode 100644 shell/btop.nix diff --git a/shell/btop.nix b/shell/btop.nix new file mode 100644 index 0000000..b1c32a6 --- /dev/null +++ b/shell/btop.nix @@ -0,0 +1,13 @@ +{ ... }: + +{ + programs = { + btop = { + enable = true; + settings = { + theme_background = false; + vim_keys = true; + }; + }; + }; +} diff --git a/shell/default.nix b/shell/default.nix index a941eea..24a0990 100644 --- a/shell/default.nix +++ b/shell/default.nix @@ -12,6 +12,7 @@ imports = [ ./atuin.nix ./bat.nix + ./btop.nix ./carapace.nix ./direnv.nix ./eza.nix