infrastructure/home/shell/btop.nix

16 lines
318 B
Nix
Raw Normal View History

2023-12-30 22:50:34 +00:00
{inputs, ...}: {
xdg.configFile."btop/themes".source = "${inputs.catppuccin-btop}/themes";
programs.btop = {
enable = true;
settings = {
theme_background = false;
color_theme = "catppuccin_mocha";
clock_format = "%Y-%m-%d %X";
};
};
programs.fish.shellAliases.htop = "btop";
}