From 85c6d7018d03cd76e516cda5a4ead40bd0c9abc9 Mon Sep 17 00:00:00 2001 From: panotaka Date: Thu, 7 Dec 2023 10:03:26 -0400 Subject: [PATCH] Add btop and htop configurations --- home/shell/btop.nix | 8 ++++++++ home/shell/default.nix | 2 ++ home/shell/htop.nix | 8 ++++++++ 3 files changed, 18 insertions(+) create mode 100644 home/shell/btop.nix create mode 100644 home/shell/htop.nix diff --git a/home/shell/btop.nix b/home/shell/btop.nix new file mode 100644 index 0000000..d44cd24 --- /dev/null +++ b/home/shell/btop.nix @@ -0,0 +1,8 @@ +{ config +, ... +}: +{ + programs.btop = { + enable = true; + }; +} diff --git a/home/shell/default.nix b/home/shell/default.nix index b5d171f..62b453f 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -4,11 +4,13 @@ ./atuin.nix ./autojump.nix ./bat.nix + ./btop.nix ./common.nix ./direnv.nix ./eza.nix ./fish ./git.nix + ./htop.nix ./nushell ./rmtrash.nix ./starship.nix diff --git a/home/shell/htop.nix b/home/shell/htop.nix new file mode 100644 index 0000000..27e3169 --- /dev/null +++ b/home/shell/htop.nix @@ -0,0 +1,8 @@ +{ config +, ... +}: +{ + programs.htop = { + enable = true; + }; +}