nix-config/modules/home-manager/shell/bat.nix
2025-07-08 10:05:22 +02:00

12 lines
187 B
Nix

{ pkgs, ... }:
{
programs.bat = {
enable = true;
extraPackages = with pkgs.bat-extras; [ batman ];
};
home.shellAliases = {
"cat" = "bat";
"man" = "batman";
};
}