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

15 lines
221 B
Nix

{ pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "${pkgs.btop.outPath}/share/btop/themes/dracula.theme";
theme_background = true;
truecolor = true;
};
};
}