Add btop and htop configurations

This commit is contained in:
panotaka
2023-12-07 10:03:26 -04:00
parent ad31be1d58
commit 85c6d7018d
3 changed files with 18 additions and 0 deletions

8
home/shell/btop.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config
, ...
}:
{
programs.btop = {
enable = true;
};
}

View File

@@ -4,11 +4,13 @@
./atuin.nix ./atuin.nix
./autojump.nix ./autojump.nix
./bat.nix ./bat.nix
./btop.nix
./common.nix ./common.nix
./direnv.nix ./direnv.nix
./eza.nix ./eza.nix
./fish ./fish
./git.nix ./git.nix
./htop.nix
./nushell ./nushell
./rmtrash.nix ./rmtrash.nix
./starship.nix ./starship.nix

8
home/shell/htop.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config
, ...
}:
{
programs.htop = {
enable = true;
};
}