NixOS-Config/home-manager/shared/shell/bat.nix

12 lines
180 B
Nix
Raw Normal View History

2024-04-29 21:49:37 +02:00
{
lib,
pkgs,
...
}: {
programs.bat = {
enable = true;
extraPackages = with pkgs.bat-extras; [batdiff batman batgrep batwatch];
catppuccin.enable = true;
};
}