1
0
Fork 0
dotfiles/home/programs/btop.nix
2022-12-25 22:13:19 +01:00

14 lines
220 B
Nix

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