1
0
Fork 0
dotfiles/home/programs/btop.nix

14 lines
220 B
Nix
Raw Permalink Normal View History

2022-12-20 16:46:51 +00:00
{ pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "${pkgs.btop.outPath}/share/btop/themes/dracula.theme";
theme_background = true;
truecolor = true;
};
};
}