add btop to homemanager

This commit is contained in:
Don Harper 2023-09-24 14:00:20 -05:00
parent 5007e9dbe8
commit bd0ebb9351
2 changed files with 12 additions and 0 deletions

11
home/btop.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
#home.packages = with pkgs; [ btop ];
programs.btop = {
enable = true;
settings = {
colorTheme = "dracula";
theme_background = true;
};
};
}