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

8 lines
167 B
Nix
Raw Normal View History

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